TypeLegalizer: Add support for passing of vector-promoted types in registers (copyFro...
[oota-llvm.git] / test / CodeGen / X86 / storetrunc-fp.ll
index 655cbd68b37adb4c9e36e7a68a3f06094c417b6b..03ad093ba8607c4b71542d729b80a4f2eb80d9b0 100644 (file)
@@ -1,7 +1,7 @@
-; RUN: llvm-as < %s | llc -march=x86 | not grep flds
+; RUN: llc < %s -march=x86 | not grep flds
 
 define void @foo(x86_fp80 %a, x86_fp80 %b, float* %fp) {
-       %c = add x86_fp80 %a, %b
+       %c = fadd x86_fp80 %a, %b
        %d = fptrunc x86_fp80 %c to float
        store float %d, float* %fp
        ret void