[llvm-commits] [llvm] r81306 - /llvm/trunk/lib/Target/ARM/ARMInstrThumb.td

Evan Cheng evan.cheng at apple.com
Tue Sep 8 18:38:24 PDT 2009


Author: evancheng
Date: Tue Sep  8 20:38:23 2009
New Revision: 81306

URL: http://llvm.org/viewvc/llvm-project?rev=81306&view=rev
Log:
Remove comments which don't add much to .s readibility.

Modified:
    llvm/trunk/lib/Target/ARM/ARMInstrThumb.td

Modified: llvm/trunk/lib/Target/ARM/ARMInstrThumb.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMInstrThumb.td?rev=81306&r1=81305&r2=81306&view=diff

==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMInstrThumb.td (original)
+++ llvm/trunk/lib/Target/ARM/ARMInstrThumb.td Tue Sep  8 20:38:23 2009
@@ -139,7 +139,7 @@
 
 // ADD rd, sp, #imm8
 def tADDrSPi : T1I<(outs tGPR:$dst), (ins GPR:$sp, i32imm:$rhs), IIC_iALUi,
-                  "add $dst, $sp, $rhs * 4 @ addrspi", []>;
+                  "add $dst, $sp, $rhs * 4", []>;
 
 // ADD sp, sp, #imm7
 def tADDspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), IIC_iALUi,
@@ -395,7 +395,7 @@
 
 let neverHasSideEffects = 1 in
 def tADDhirr : T1pIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
-                     "add", " $dst, $rhs @ addhirr", []>;
+                     "add", " $dst, $rhs", []>;
 
 // And register
 let isCommutable = 1 in
@@ -499,11 +499,11 @@
 
 // FIXME: Make these predicable.
 def tMOVgpr2tgpr : T1I<(outs tGPR:$dst), (ins GPR:$src), IIC_iMOVr,
-                       "mov $dst, $src\t@ hir2lor", []>;
+                       "mov $dst, $src", []>;
 def tMOVtgpr2gpr : T1I<(outs GPR:$dst), (ins tGPR:$src), IIC_iMOVr,
-                       "mov $dst, $src\t@ lor2hir", []>;
+                       "mov $dst, $src", []>;
 def tMOVgpr2gpr  : T1I<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
-                       "mov $dst, $src\t@ hir2hir", []>;
+                       "mov $dst, $src", []>;
 } // neverHasSideEffects
 
 // multiply register





More information about the llvm-commits mailing list