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 | 47acfeda62c70996497480acab56b0cf097efff9 (patch) | |
tree | 60b0780a0c19dbba77b2a5519728db6b65cab6c5 | |
parent | f8deeafd9198f9691bb279fd98e76756ab78a27b (diff) | |
download | bcm5719-llvm-47acfeda62c70996497480acab56b0cf097efff9.tar.gz bcm5719-llvm-47acfeda62c70996497480acab56b0cf097efff9.zip |
No really, I'm not on crack
llvm-svn: 9855
-rw-r--r-- | llvm/include/llvm/Support/CFG.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/CFG.h b/llvm/include/llvm/Support/CFG.h index 0a58104ee4f..26616dbb7a0 100644 --- a/llvm/include/llvm/Support/CFG.h +++ b/llvm/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); } |