Merging r261039:
[oota-llvm.git] / test / CodeGen / X86 / 2009-01-31-BigShift2.ll
index 2b5b189578300c4694c091932c4b9c10a08ebf80..90d14e7b707de51df8e0a61b5e3055e46f7f0fc6 100644 (file)
@@ -1,11 +1,11 @@
-; RUN: llvm-as < %s | llc -march=x86 | grep {mov.*56}
+; RUN: llc < %s -march=x86 | grep "mov.*56"
 ; PR3449
 
 define void @test(<8 x double>* %P, i64* %Q) nounwind {
-       %A = load <8 x double>* %P              ; <<8 x double>> [#uses=1]
+       %A = load <8 x double>, <8 x double>* %P                ; <<8 x double>> [#uses=1]
        %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
 }