From: Vikram S. Adve Date: Sun, 14 Oct 2001 23:20:44 +0000 (+0000) Subject: Added getEntryNode() and getExitNode() functions. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c649458d184f07e00d009d7b15939ed1e494e1b1;p=oota-llvm.git Added getEntryNode() and getExitNode() functions. The latter are actually bogus and will be fixed by me soon. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@802 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Function.h b/include/llvm/Function.h index fe878bf45e8..1acc9af935d 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -63,7 +63,12 @@ public: inline const BasicBlocksType &getBasicBlocks() const { return BasicBlocks; } inline BasicBlocksType &getBasicBlocks() { return BasicBlocks; } - + inline const BasicBlock* getEntryNode() const { return front(); } + inline BasicBlock* getEntryNode() { return front(); } + + inline const BasicBlock* getExitNode() const { return back(); } + inline BasicBlock* getExitNode() { return back(); } + //===--------------------------------------------------------------------===// // BasicBlock iterator forwarding functions //