diff options
author | Devang Patel <dpatel@apple.com> | 2009-07-29 15:52:49 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-07-29 15:52:49 +0000 |
commit | efbf178082ef50e0e44532076a945bb7981958f1 (patch) | |
tree | eaef0c366936070ffba814dbe6c38c97f7c0eb28 /include | |
parent | c7364243e31773b78c98b631258a56c868526395 (diff) | |
download | external_llvm-efbf178082ef50e0e44532076a945bb7981958f1.zip external_llvm-efbf178082ef50e0e44532076a945bb7981958f1.tar.gz external_llvm-efbf178082ef50e0e44532076a945bb7981958f1.tar.bz2 |
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77457 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Module.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Module.h b/include/llvm/Module.h index 888eac2..913f874 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -388,7 +388,7 @@ public: alias_iterator alias_end () { return AliasList.end(); } /// Get a constant iterator to the last alias. const_alias_iterator alias_end () const { return AliasList.end(); } - /// Determine how many functions are in the Module's list of aliases. + /// Determine how many aliases are in the Module's list of aliases. size_t alias_size () const { return AliasList.size(); } /// Determine if the list of aliases is empty. bool alias_empty() const { return AliasList.empty(); } |