diff options
author | Dale Johannesen <dalej@apple.com> | 2010-06-18 21:07:47 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2010-06-18 21:07:47 +0000 |
commit | 51bd47edbc6112212291f4e82502c8b33ff799f1 (patch) | |
tree | 9ca09f5e841347a11bd027fcbbbb7e2ae3560942 | |
parent | 52c61ec1640a9fa1cf8c2fde97a14dfbf5e702b7 (diff) |
Fix ARM/Thumb reversal in previous attempt.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106314 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index 1b4330406f..dd64f7270d 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -1084,11 +1084,11 @@ let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in { "@TC_RETURN","\t$dst", []>, Requires<[IsNotDarwin]>; def TAILJMPdND : ABXI<0b1010, (outs), (ins brtarget:$dst, variable_ops), - IIC_Br, "b.w\t$dst @ TAILCALL", + IIC_Br, "b\t$dst @ TAILCALL", []>, Requires<[IsARM, IsNotDarwin]>; def TAILJMPdNDt : ABXI<0b1010, (outs), (ins brtarget:$dst, variable_ops), - IIC_Br, "b\t$dst @ TAILCALL", + IIC_Br, "b.w\t$dst @ TAILCALL", []>, Requires<[IsThumb, IsNotDarwin]>; def TAILJMPrND : AXI<(outs), (ins tGPR:$dst, variable_ops), |