[llvm-commits] CVS: llvm/lib/Target/Sparc/SparcInstrInfo.td

Chris Lattner sabre at nondot.org
Thu Oct 12 10:58:13 PDT 2006



Changes in directory llvm/lib/Target/Sparc:

SparcInstrInfo.td updated: 1.129 -> 1.130
---
Log message:

adjcallstackup/down clobbers the stack pointer


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

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


Index: llvm/lib/Target/Sparc/SparcInstrInfo.td
diff -u llvm/lib/Target/Sparc/SparcInstrInfo.td:1.129 llvm/lib/Target/Sparc/SparcInstrInfo.td:1.130
--- llvm/lib/Target/Sparc/SparcInstrInfo.td:1.129	Wed Oct 11 16:03:11 2006
+++ llvm/lib/Target/Sparc/SparcInstrInfo.td	Thu Oct 12 12:57:58 2006
@@ -205,10 +205,10 @@
 
 def ADJCALLSTACKDOWN : Pseudo<(ops i32imm:$amt),
                                "!ADJCALLSTACKDOWN $amt",
-                               [(callseq_start imm:$amt)]>;
+                               [(callseq_start imm:$amt)]>, Imp<[O6],[O6]>;
 def ADJCALLSTACKUP : Pseudo<(ops i32imm:$amt),
                             "!ADJCALLSTACKUP $amt",
-                            [(callseq_end imm:$amt)]>;
+                            [(callseq_end imm:$amt)]>, Imp<[O6],[O6]>;
 def IMPLICIT_DEF_Int : Pseudo<(ops IntRegs:$dst),
                               "!IMPLICIT_DEF $dst",
                               [(set IntRegs:$dst, (undef))]>;






More information about the llvm-commits mailing list