commit | 46a49da410a738a68ecbd2964f519251ba27fc66 | [log] [tgz] |
---|---|---|
author | Jay Foad <jay.foad@gmail.com> | Fri Jan 15 11:29:26 2010 +0000 |
committer | Jay Foad <jay.foad@gmail.com> | Fri Jan 15 11:29:26 2010 +0000 |
tree | 994d9746d436949cedd8565e4c4ff68b982dd282 | |
parent | 5b3701256c6706182ebfaeed8d50a66c6afe2a40 [diff] [blame] |
Test case for http://llvm.org/PR6028. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93511 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/ExecutionEngine/2010-01-15-UndefValue.ll b/test/ExecutionEngine/2010-01-15-UndefValue.ll new file mode 100644 index 0000000..7d646eb --- /dev/null +++ b/test/ExecutionEngine/2010-01-15-UndefValue.ll
@@ -0,0 +1,9 @@ +; RUN: llvm-as %s -o %t.bc +; RUN: lli -force-interpreter=true %t.bc + +define i32 @main() { + %a = add i32 0, undef + %b = add float 0.0, undef + %c = add double 0.0, undef + ret i32 0 +}