Don't repeat names in comments.

llvm-svn: 240396
This commit is contained in:
Rafael Espindola 2015-06-23 12:29:52 +00:00
parent ce4c2bc1d6
commit 3fd22703b6
1 changed files with 3 additions and 6 deletions

View File

@ -35,14 +35,11 @@ public:
private: private:
const DataLayout *DL; const DataLayout *DL;
/// AnonGlobalIDs - We need to give global values the same name every time /// We need to give global values the same name every time they are mangled.
/// they are mangled. This keeps track of the number we give to anonymous /// This keeps track of the number we give to anonymous ones.
/// ones.
///
mutable DenseMap<const GlobalValue*, unsigned> AnonGlobalIDs; mutable DenseMap<const GlobalValue*, unsigned> AnonGlobalIDs;
/// NextAnonGlobalID - This simple counter is used to unique value names. /// This simple counter is used to unique value names.
///
mutable unsigned NextAnonGlobalID; mutable unsigned NextAnonGlobalID;
public: public: