Temporarily Revert "Nuke the old JIT." as it's not quite ready to
[oota-llvm.git] / test / ExecutionEngine / MCJIT / 2010-01-15-UndefValue.ll
1 ; RUN: %lli_mcjit -force-interpreter=true %s > /dev/null
2
3 define i32 @main() {
4        %a = add i32 0, undef
5        %b = fadd float 0.0, undef
6        %c = fadd double 0.0, undef
7        ret i32 0
8 }