diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-09 22:16:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-09 22:16:18 +0000 |
commit | fbe3ecdb2cabae81525db3ad8d2d88d584b73fb2 (patch) | |
tree | 30561ba966d33a388e796ffb2a8c4ab5a2c21474 /include | |
parent | 806cebc562aba0f2e3fef774323e913d451b2b70 (diff) | |
download | external_llvm-fbe3ecdb2cabae81525db3ad8d2d88d584b73fb2.zip external_llvm-fbe3ecdb2cabae81525db3ad8d2d88d584b73fb2.tar.gz external_llvm-fbe3ecdb2cabae81525db3ad8d2d88d584b73fb2.tar.bz2 |
Update out of date comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6070 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Function.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h index 3d6288c..abf3819 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -106,8 +106,8 @@ public: Function *getPrev() { return Prev; } const Function *getPrev() const { return Prev; } - /// Get the underlying elements of the Function... both the argument list and - /// basic block list are empty for external functions. + /// Get the underlying elements of the Function... the basic block list is + /// empty for external functions. /// const ArgumentListType &getArgumentList() const { return ArgumentList; } ArgumentListType &getArgumentList() { return ArgumentList; } |