diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-10 05:45:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-10 05:45:39 +0000 |
commit | dd41527a7dc6e2dacfad02ca8d4cbcb803b017da (patch) | |
tree | 2f83b7a0742e7ceb3e7bb1d4ff9b7caeead43afc /lib/Target/X86/X86InstrFPStack.td | |
parent | 214884ba03bb3ba791a14db51a61aaa694ddcff8 (diff) |
remove explicit sets of 'neverHasSideEffects' that can now be
inferred from the instr patterns.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45824 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrFPStack.td')
-rw-r--r-- | lib/Target/X86/X86InstrFPStack.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrFPStack.td b/lib/Target/X86/X86InstrFPStack.td index 5449e648cd..d27e72de4b 100644 --- a/lib/Target/X86/X86InstrFPStack.td +++ b/lib/Target/X86/X86InstrFPStack.td @@ -466,7 +466,7 @@ def ST_FPrr : FPI<0xD8, AddRegFrm, (outs), (ins RST:$op), "fstp\t$op">, DD; def XCH_F : FPI<0xC8, AddRegFrm, (outs), (ins RST:$op), "fxch\t$op">, D9; // Floating point constant loads. -let isReMaterializable = 1, neverHasSideEffects = 1 in { +let isReMaterializable = 1 in { def LD_Fp032 : FpIf32<(outs RFP32:$dst), (ins), ZeroArgFP, [(set RFP32:$dst, fpimm0)]>; def LD_Fp132 : FpIf32<(outs RFP32:$dst), (ins), ZeroArgFP, |