diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-12 17:56:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-12 17:56:34 +0000 |
commit | 1e5e97462b09f2dc6b6105d403c090a6dda59232 (patch) | |
tree | eabcf7b67100cbb5d6fb5bfb3cc3817de757b653 | |
parent | 33e4869ba0345e5cb2c661b265928f2cd75caa7c (diff) |
mark adjcallstack up/down as clobbering and using the SP
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30908 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/PowerPC/PPCInstrInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index b044d77db8..a61aff018c 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.td @@ -276,10 +276,10 @@ def FPContractions : Predicate<"!NoExcessFPPrecision">; 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", []>; |