Don't repeat names in comments.
authorRafael Espindola <rafael.espindola@gmail.com>
Tue, 23 Jun 2015 12:29:52 +0000 (12:29 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Tue, 23 Jun 2015 12:29:52 +0000 (12:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240396 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IR/Mangler.h

index 33ebe05eb01d899a5b32e2ed3cd7971d961f7c69..929ffbef1a4b6cdd5837b2ab6be74a0ae23cbeb9 100644 (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: