[x32] Fix FrameIndex check in SelectLEA64_32Addr
[oota-llvm.git] / test / CodeGen / X86 / 2009-01-31-BigShift2.ll
index 9d240844afba1df6dae3276146f25b88858d70ae..b478f27a95b955825cd98e7e72c5841c5a4e56d2 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=x86 | grep {mov.*56}
+; RUN: llc < %s -march=x86 | grep "mov.*56"
 ; PR3449
 
 define void @test(<8 x double>* %P, i64* %Q) nounwind {
@@ -6,6 +6,6 @@ define void @test(<8 x double>* %P, i64* %Q) nounwind {
        %B = bitcast <8 x double> %A to i512            ; <i512> [#uses=1]
        %C = lshr i512 %B, 448          ; <i512> [#uses=1]
        %D = trunc i512 %C to i64               ; <i64> [#uses=1]
-       volatile store i64 %D, i64* %Q
+       store volatile i64 %D, i64* %Q
        ret void
 }