getting the pic base has no side effects.
authorChris Lattner <sabre@nondot.org>
Sat, 5 Jan 2008 03:54:32 +0000 (03:54 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 5 Jan 2008 03:54:32 +0000 (03:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45618 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86InstrInfo.td

index 9bd30fe351f7d7ee2c05d825f0b76112aec22b3a..5f641076f00935aaee41ca85419718800e3e0d03 100644 (file)
@@ -282,8 +282,10 @@ def IMPLICIT_DEF_GR32  : I<0, Pseudo, (outs GR32:$dst), (ins),
 def NOOP : I<0x90, RawFrm, (outs), (ins), "nop", []>;
 
 // PIC base
+let neverHasSideEffects = 1 in {
 def MOVPC32r : Ii32<0xE8, Pseudo, (outs GR32:$reg), (ins piclabel:$label),
                     "call\t$label\n\tpop{l}\t$reg", []>;
+}
 
 //===----------------------------------------------------------------------===//
 //  Control Flow Instructions...