diff options
Diffstat (limited to 'llvm/test/ExecutionEngine/MCJIT/2010-01-15-UndefValue.ll')
| -rw-r--r-- | llvm/test/ExecutionEngine/MCJIT/2010-01-15-UndefValue.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/2010-01-15-UndefValue.ll b/llvm/test/ExecutionEngine/MCJIT/2010-01-15-UndefValue.ll new file mode 100644 index 00000000000..524a724c474 --- /dev/null +++ b/llvm/test/ExecutionEngine/MCJIT/2010-01-15-UndefValue.ll @@ -0,0 +1,8 @@ +; RUN: %lli -use-mcjit -force-interpreter=true %s + +define i32 @main() { + %a = add i32 0, undef + %b = fadd float 0.0, undef + %c = fadd double 0.0, undef + ret i32 0 +} |

