[llvm] r269792 - Don't repeat name in comment.

Rafael Espindola via llvm-commits llvm-commits at lists.llvm.org
Tue May 17 10:57:49 PDT 2016


Author: rafael
Date: Tue May 17 12:57:49 2016
New Revision: 269792

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

Modified:
    llvm/trunk/include/llvm/MC/MCCodeGenInfo.h

Modified: llvm/trunk/include/llvm/MC/MCCodeGenInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCCodeGenInfo.h?rev=269792&r1=269791&r2=269792&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCCodeGenInfo.h (original)
+++ llvm/trunk/include/llvm/MC/MCCodeGenInfo.h Tue May 17 12:57:49 2016
@@ -20,15 +20,15 @@
 namespace llvm {
 
 class MCCodeGenInfo {
-  /// RelocationModel - Relocation model: static, pic, etc.
+  /// Relocation model: static, pic, etc.
   ///
   Reloc::Model RelocationModel;
 
-  /// CMModel - Code model.
+  /// Code model.
   ///
   CodeModel::Model CMModel;
 
-  /// OptLevel - Optimization level.
+  /// Optimization level.
   ///
   CodeGenOpt::Level OptLevel;
 




More information about the llvm-commits mailing list