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:
const DataLayout *DL;
/// AnonGlobalIDs - We need to give global values the same name every time
/// they are mangled. This keeps track of the number we give to anonymous
/// ones.
///
/// We need to give global values the same name every time they are mangled.
/// This keeps track of the number we give to anonymous ones.
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;
public: