[llvm] r222724 - Don't repeat name in comment or duplicate comment. NFC.

Rafael Espindola rafael.espindola at gmail.com
Mon Nov 24 20:28:31 PST 2014


Author: rafael
Date: Mon Nov 24 22:28:31 2014
New Revision: 222724

URL: http://llvm.org/viewvc/llvm-project?rev=222724&view=rev
Log:
Don't repeat name in comment or duplicate comment. NFC.

Modified:
    llvm/trunk/lib/Linker/LinkModules.cpp

Modified: llvm/trunk/lib/Linker/LinkModules.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Linker/LinkModules.cpp?rev=222724&r1=222723&r2=222724&view=diff
==============================================================================
--- llvm/trunk/lib/Linker/LinkModules.cpp (original)
+++ llvm/trunk/lib/Linker/LinkModules.cpp Mon Nov 24 22:28:31 2014
@@ -63,8 +63,8 @@ public:
   /// equivalent to the specified type in the source module.
   void addTypeMapping(Type *DstTy, Type *SrcTy);
 
-  /// linkDefinedTypeBodies - Produce a body for an opaque type in the dest
-  /// module from a type definition in the source module.
+  /// Produce a body for an opaque type in the dest module from a type
+  /// definition in the source module.
   void linkDefinedTypeBodies();
 
   /// Return the mapped type to use for the specified input type from the
@@ -201,8 +201,6 @@ bool TypeMapTy::areTypesIsomorphic(Type
   return true;
 }
 
-/// Produce a body for an opaque type in the dest module from a type definition
-/// in the source module.
 void TypeMapTy::linkDefinedTypeBodies() {
   SmallVector<Type*, 16> Elements;
   SmallString<16> TmpName;





More information about the llvm-commits mailing list