X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FExecutionEngine%2F2010-01-15-UndefValue.ll;h=6e7a392125e18802be93a9dd55297201e008478a;hb=1518afddea6c0a4275a9ac64a9ffe2b6b4c0600a;hp=7d646ebdeb9d6441ef178b8e697566cc3008e629;hpb=46a49da410a738a68ecbd2964f519251ba27fc66;p=oota-llvm.git diff --git a/test/ExecutionEngine/2010-01-15-UndefValue.ll b/test/ExecutionEngine/2010-01-15-UndefValue.ll index 7d646ebdeb9..6e7a392125e 100644 --- a/test/ExecutionEngine/2010-01-15-UndefValue.ll +++ b/test/ExecutionEngine/2010-01-15-UndefValue.ll @@ -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 }