test/CodeGen/X86/red-zone.ll: Add explicit -mtriple=x86_64-linux.
[oota-llvm.git] / test / CodeGen / X86 / multiple-return-values.ll
index 2e754a8febc2bc775e6163dfbe46daa83364b3c1..018d997599a979a33fd863ad17e2bf91eafa4a27 100644 (file)
@@ -1,8 +1,8 @@
-; RUN: llvm-as < %s | llc -march=x86
+; RUN: llc < %s -march=x86
 
 define {i64, float} @bar(i64 %a, float %b) {
         %y = add i64 %a, 7
-        %z = add float %b, 7.0
+        %z = fadd float %b, 7.0
        ret i64 %y, float %z
 }