[llvm] r240396 - Don't repeat names in comments.

Rafael Espindola rafael.espindola at gmail.com
Tue Jun 23 05:29:52 PDT 2015


Author: rafael
Date: Tue Jun 23 07:29:52 2015
New Revision: 240396

URL: http://llvm.org/viewvc/llvm-project?rev=240396&view=rev
Log:
Don't repeat names in comments.

Modified:
    llvm/trunk/include/llvm/IR/Mangler.h

Modified: llvm/trunk/include/llvm/IR/Mangler.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Mangler.h?rev=240396&r1=240395&r2=240396&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Mangler.h (original)
+++ llvm/trunk/include/llvm/IR/Mangler.h Tue Jun 23 07:29:52 2015
@@ -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:





More information about the llvm-commits mailing list