[llvm-commits] CVS: llvm/include/llvm/Support/CFG.h
Chris Lattner
lattner at cs.uiuc.edu
Sun Nov 9 22:25:01 PST 2003
Changes in directory llvm/include/llvm/Support:
CFG.h updated: 1.16 -> 1.17
---
Log message:
No really, I'm not on crack
---
Diffs of the changes: (+1 -1)
Index: llvm/include/llvm/Support/CFG.h
diff -u llvm/include/llvm/Support/CFG.h:1.16 llvm/include/llvm/Support/CFG.h:1.17
--- llvm/include/llvm/Support/CFG.h:1.16 Sun Nov 9 22:16:50 2003
+++ llvm/include/llvm/Support/CFG.h Sun Nov 9 22:23:52 2003
@@ -114,7 +114,7 @@
/// getSuccessorIndex - This is used to interface between code that wants to
/// operate on terminator instructions directly.
- unsigned getSuccessorIndex() const { return Idx; }
+ unsigned getSuccessorIndex() const { return idx; }
inline bool operator==(const _Self& x) const { return idx == x.idx; }
inline bool operator!=(const _Self& x) const { return !operator==(x); }
More information about the llvm-commits
mailing list