From: Jay Foad Date: Fri, 15 Jan 2010 11:29:26 +0000 (+0000) Subject: Test case for http://llvm.org/PR6028. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=46a49da410a738a68ecbd2964f519251ba27fc66;p=oota-llvm.git 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 00000000000..7d646ebdeb9 --- /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 +}