diff options
author | Bob Wilson <bob.wilson@apple.com> | 2011-12-22 22:12:44 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2011-12-22 22:12:44 +0000 |
commit | d2355e72c56f0fe8fe032afc171c5622ad029c6a (patch) | |
tree | 3608810cb96030afe7966c5c0f158c31ce1e5d64 | |
parent | fe74d77002df4c8c8486a4ad3852b1336aecfdc0 (diff) |
Add missing usesCustomInserter flag on Int_eh_sjlj_setjmp_nofp.
Noticed by inspection; I don't have a testcase for this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147188 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index a85607c519..6624d5c5f1 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -4721,7 +4721,7 @@ let Defs = let Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, LR, CPSR ], - hasSideEffects = 1, isBarrier = 1 in { + hasSideEffects = 1, isBarrier = 1, usesCustomInserter = 1 in { def Int_eh_sjlj_setjmp_nofp : PseudoInst<(outs), (ins GPR:$src, GPR:$val), NoItinerary, [(set R0, (ARMeh_sjlj_setjmp GPR:$src, GPR:$val))]>, |