mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
Update comment, remove misleading method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@806 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -55,8 +55,9 @@ 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; }
|
||||
|
||||
@@ -66,9 +67,6 @@ public:
|
||||
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
|
||||
//
|
||||
|
Reference in New Issue
Block a user