From: Chris Lattner Date: Mon, 10 Nov 2003 04:16:50 +0000 (+0000) Subject: Helper method X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b977ef2d54e6144ece686ed8d8360961820d1986;p=oota-llvm.git Helper method git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9854 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/CFG.h b/include/llvm/Support/CFG.h index 9355139f34a..0a58104ee4f 100644 --- a/include/llvm/Support/CFG.h +++ b/include/llvm/Support/CFG.h @@ -111,6 +111,10 @@ public: idx = I.idx; return *this; } + + /// getSuccessorIndex - This is used to interface between code that wants to + /// operate on terminator instructions directly. + 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); }