[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCInstrInfo.td

Chris Lattner sabre at nondot.org
Thu Oct 12 10:56:48 PDT 2006



Changes in directory llvm/lib/Target/PowerPC:

PPCInstrInfo.td updated: 1.245 -> 1.246
---
Log message:

mark adjcallstack up/down as clobbering and using the SP


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

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


Index: llvm/lib/Target/PowerPC/PPCInstrInfo.td
diff -u llvm/lib/Target/PowerPC/PPCInstrInfo.td:1.245 llvm/lib/Target/PowerPC/PPCInstrInfo.td:1.246
--- llvm/lib/Target/PowerPC/PPCInstrInfo.td:1.245	Wed Oct 11 16:03:11 2006
+++ llvm/lib/Target/PowerPC/PPCInstrInfo.td	Thu Oct 12 12:56:34 2006
@@ -276,10 +276,10 @@
 let hasCtrlDep = 1 in {
 def ADJCALLSTACKDOWN : Pseudo<(ops u16imm:$amt),
                               "${:comment} ADJCALLSTACKDOWN",
-                              [(callseq_start imm:$amt)]>;
+                              [(callseq_start imm:$amt)]>, Imp<[R1],[R1]>;
 def ADJCALLSTACKUP   : Pseudo<(ops u16imm:$amt),
                               "${:comment} ADJCALLSTACKUP",
-                              [(callseq_end imm:$amt)]>;
+                              [(callseq_end imm:$amt)]>, Imp<[R1],[R1]>;
 
 def UPDATE_VRSAVE    : Pseudo<(ops GPRC:$rD, GPRC:$rS),
                               "UPDATE_VRSAVE $rD, $rS", []>;






More information about the llvm-commits mailing list