mark the old jit tests as unsupported for powerpc64 (for cmake)
[oota-llvm.git] / test / ExecutionEngine / 2010-01-15-UndefValue.ll
index 7d646ebdeb9d6441ef178b8e697566cc3008e629..01cb21f4206dd35030fc3f604408967b6b09c336 100644 (file)
@@ -1,9 +1,8 @@
-; RUN: llvm-as %s -o %t.bc
-; RUN: lli -force-interpreter=true %t.bc
+; RUN: %lli -force-interpreter=true %s
 
 define i32 @main() {
        %a = add i32 0, undef
-       %b = add float 0.0, undef
-       %c = add double 0.0, undef
+       %b = fadd float 0.0, undef
+       %c = fadd double 0.0, undef
        ret i32 0
 }