aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-10-12 18:00:26 +0000
committerChris Lattner <sabre@nondot.org>2006-10-12 18:00:26 +0000
commit65d8c1e8d49150187b8561be931abf6b83afd793 (patch)
treecba34de738966b5b37a637f5d7449069318df1a6
parent93b8e490c4949af35f8d09ab2c19634a68b2f483 (diff)
downloadexternal_llvm-65d8c1e8d49150187b8561be931abf6b83afd793.zip
external_llvm-65d8c1e8d49150187b8561be931abf6b83afd793.tar.gz
external_llvm-65d8c1e8d49150187b8561be931abf6b83afd793.tar.bz2
mark call adjustments as modifying the SP
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30911 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMInstrInfo.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td
index 9873e44..4cf271b 100644
--- a/lib/Target/ARM/ARMInstrInfo.td
+++ b/lib/Target/ARM/ARMInstrInfo.td
@@ -95,11 +95,11 @@ def armfmdrr : SDNode<"ARMISD::FMDRR", SDTarmfmdrr, []>;
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)]>;