[llvm] r322113 - Don't duplicate names in comments. NFC.

Rafael Espindola via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 9 12:02:35 PST 2018


Author: rafael
Date: Tue Jan  9 12:02:35 2018
New Revision: 322113

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

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

Modified: llvm/trunk/include/llvm/MC/MCFragment.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCFragment.h?rev=322113&r1=322112&r2=322113&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCFragment.h (original)
+++ llvm/trunk/include/llvm/MC/MCFragment.h Tue Jan  9 12:02:35 2018
@@ -437,13 +437,13 @@ public:
 };
 
 class MCOrgFragment : public MCFragment {
-  /// Offset - The offset this fragment should start at.
+  /// The offset this fragment should start at.
   const MCExpr *Offset;
 
-  /// Value - Value to use for filling bytes.
+  /// Value to use for filling bytes.
   int8_t Value;
 
-  /// Loc - Source location of the directive that this fragment was created for.
+  /// Source location of the directive that this fragment was created for.
   SMLoc Loc;
 
 public:




More information about the llvm-commits mailing list