[llvm-commits] CVS: llvm/lib/Target/ARM/ARMInstrInfo.td

Chris Lattner sabre at nondot.org
Thu Oct 12 11:00:40 PDT 2006



Changes in directory llvm/lib/Target/ARM:

ARMInstrInfo.td updated: 1.44 -> 1.45
---
Log message:

mark call adjustments as modifying the SP


---
Diffs of the changes:  (+2 -2)

 ARMInstrInfo.td |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Target/ARM/ARMInstrInfo.td
diff -u llvm/lib/Target/ARM/ARMInstrInfo.td:1.44 llvm/lib/Target/ARM/ARMInstrInfo.td:1.45
--- llvm/lib/Target/ARM/ARMInstrInfo.td:1.44	Wed Oct 11 16:03:11 2006
+++ llvm/lib/Target/ARM/ARMInstrInfo.td	Thu Oct 12 13:00:26 2006
@@ -95,11 +95,11 @@
 
 def ADJCALLSTACKUP : InstARM<(ops i32imm:$amt),
                             "!ADJCALLSTACKUP $amt",
-                            [(callseq_end imm:$amt)]>;
+                            [(callseq_end imm:$amt)]>, Imp<[R13],[R13]>;
 
 def ADJCALLSTACKDOWN : InstARM<(ops i32imm:$amt),
                                "!ADJCALLSTACKDOWN $amt",
-                               [(callseq_start imm:$amt)]>;
+                               [(callseq_start imm:$amt)]>, Imp<[R13],[R13]>;
 
 let isReturn = 1 in {
   def bx: InstARM<(ops), "bx r14", [(retflag)]>;






More information about the llvm-commits mailing list