From 349d591161e3926da4f0c7c2808d70a31abaf583 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 14 Oct 2001 23:26:24 +0000 Subject: [PATCH] Update comment, remove misleading method git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@806 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Function.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) 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