From: Chris Lattner Date: Sun, 14 Oct 2001 23:26:24 +0000 (+0000) Subject: Update comment, remove misleading method X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=349d591161e3926da4f0c7c2808d70a31abaf583;p=oota-llvm.git Update comment, remove misleading method git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@806 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Function.h b/include/llvm/Function.h index 1acc9af935d..4267d32c1f4 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -55,19 +55,17 @@ public: // this is true for external methods, defined as forward "declare"ations bool isExternal() const { return BasicBlocks.empty(); } - - // Get the underlying elements of the Method... + // Get the underlying elements of the Method... both the argument list and + // basic block list are empty for external methods. + // inline const ArgumentListType &getArgumentList() const{ return ArgumentList; } inline ArgumentListType &getArgumentList() { return ArgumentList; } 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(); } + inline const BasicBlock *getEntryNode() const { return front(); } + inline BasicBlock *getEntryNode() { return front(); } //===--------------------------------------------------------------------===// // BasicBlock iterator forwarding functions