diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-10 04:23:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-10 04:23:52 +0000 |
commit | 33e0a7575dd1b200ad75d6216f135389e2b0575a (patch) | |
tree | 6a031f2ff705f68d4d374e836125b8e104d8df14 /include | |
parent | b977ef2d54e6144ece686ed8d8360961820d1986 (diff) | |
download | external_llvm-33e0a7575dd1b200ad75d6216f135389e2b0575a.zip external_llvm-33e0a7575dd1b200ad75d6216f135389e2b0575a.tar.gz external_llvm-33e0a7575dd1b200ad75d6216f135389e2b0575a.tar.bz2 |
No really, I'm not on crack
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9855 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/CFG.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/CFG.h b/include/llvm/Support/CFG.h index 0a58104..26616db 100644 --- a/include/llvm/Support/CFG.h +++ b/include/llvm/Support/CFG.h @@ -114,7 +114,7 @@ public: /// 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); } |