From: Devang Patel Date: Wed, 29 Jul 2009 15:52:49 +0000 (+0000) Subject: Fix comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=efbf178082ef50e0e44532076a945bb7981958f1;p=oota-llvm.git Fix comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77457 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Module.h b/include/llvm/Module.h index 888eac2a69c..913f8746ead 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(); }