From: Bob Wilson Date: Wed, 16 Nov 2011 17:09:59 +0000 (+0000) Subject: Fix tablegen warning: hasSideEffects is inferred for eh_sjlj_dispatchsetup. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=d0405aaabcb0d6cf34bb8cd0716b959cd9eb8741 Fix tablegen warning: hasSideEffects is inferred for eh_sjlj_dispatchsetup. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144798 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index 7c7e58c7b92..fdf405f56f4 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -4668,7 +4668,7 @@ def Int_eh_sjlj_longjmp : PseudoInst<(outs), (ins GPR:$src, GPR:$scratch), // This pseudo is used for ARM, Thumb1 and Thumb2. Any differences are // handled when the pseudo is expanded (which happens before any passes // that need the instruction size). -let isBarrier = 1, hasSideEffects = 1 in +let isBarrier = 1 in def eh_sjlj_dispatchsetup : PseudoInst<(outs), (ins), NoItinerary, []>; //===----------------------------------------------------------------------===//