diff options
Diffstat (limited to 'include/llvm/Function.h')
-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 3d6288cb51..abf381916e 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; } |