[llvm-commits] [llvm] r147188 - /llvm/trunk/lib/Target/ARM/ARMInstrInfo.td
Bob Wilson
bob.wilson at apple.com
Thu Dec 22 14:12:44 PST 2011
Author: bwilson
Date: Thu Dec 22 16:12:44 2011
New Revision: 147188
URL: http://llvm.org/viewvc/llvm-project?rev=147188&view=rev
Log:
Add missing usesCustomInserter flag on Int_eh_sjlj_setjmp_nofp.
Noticed by inspection; I don't have a testcase for this.
Modified:
llvm/trunk/lib/Target/ARM/ARMInstrInfo.td
Modified: llvm/trunk/lib/Target/ARM/ARMInstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMInstrInfo.td?rev=147188&r1=147187&r2=147188&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMInstrInfo.td (original)
+++ llvm/trunk/lib/Target/ARM/ARMInstrInfo.td Thu Dec 22 16:12:44 2011
@@ -4721,7 +4721,7 @@
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))]>,
More information about the llvm-commits
mailing list