diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-12 17:57:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-12 17:57:58 +0000 |
commit | 740c2e079929d1204edc0712cc49dc267076025b (patch) | |
tree | 9624313a21d93eff55f2c235b2c5e37ac680773e /lib/Target/Sparc/SparcInstrInfo.td | |
parent | 1e5e97462b09f2dc6b6105d403c090a6dda59232 (diff) |
adjcallstackup/down clobbers the stack pointer
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30909 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Sparc/SparcInstrInfo.td')
-rw-r--r-- | lib/Target/Sparc/SparcInstrInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/Sparc/SparcInstrInfo.td b/lib/Target/Sparc/SparcInstrInfo.td index 713f0e52d9..aa7516db44 100644 --- a/lib/Target/Sparc/SparcInstrInfo.td +++ b/lib/Target/Sparc/SparcInstrInfo.td @@ -205,10 +205,10 @@ class Pseudo<dag ops, string asmstr, list<dag> pattern> 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))]>; |