projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed903d7
)
remove unneeded parens
author
Gabor Greif
<ggreif@gmail.com>
Thu, 8 Jul 2010 16:52:57 +0000
(16:52 +0000)
committer
Gabor Greif
<ggreif@gmail.com>
Thu, 8 Jul 2010 16:52:57 +0000
(16:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107881
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Support/CFG.h
patch
|
blob
|
history
diff --git
a/include/llvm/Support/CFG.h
b/include/llvm/Support/CFG.h
index f07c719f194dab91161b448710ad2ce5e616c42e..9ba71fcca8a56ddc8e7bf6116f150d764418b424 100644
(file)
--- a/
include/llvm/Support/CFG.h
+++ b/
include/llvm/Support/CFG.h
@@
-53,7
+53,7
@@
public:
assert(!It.atEnd() && "pred_iterator out of range!");
return cast<TerminatorInst>(*It)->getParent();
}
- inline pointer *operator->() const { return &
(operator*()
); }
+ inline pointer *operator->() const { return &
operator*(
); }
inline Self& operator++() { // Preincrement
assert(!It.atEnd() && "pred_iterator out of range!");