[llvm-commits] [llvm] r93511 - /llvm/trunk/test/ExecutionEngine/2010-01-15-UndefValue.ll
Jay Foad
jay.foad at gmail.com
Fri Jan 15 03:29:27 PST 2010
Author: foad
Date: Fri Jan 15 05:29:26 2010
New Revision: 93511
URL: http://llvm.org/viewvc/llvm-project?rev=93511&view=rev
Log:
Test case for http://llvm.org/PR6028.
Added:
llvm/trunk/test/ExecutionEngine/2010-01-15-UndefValue.ll (with props)
Added: llvm/trunk/test/ExecutionEngine/2010-01-15-UndefValue.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/2010-01-15-UndefValue.ll?rev=93511&view=auto
==============================================================================
--- llvm/trunk/test/ExecutionEngine/2010-01-15-UndefValue.ll (added)
+++ llvm/trunk/test/ExecutionEngine/2010-01-15-UndefValue.ll Fri Jan 15 05:29:26 2010
@@ -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
+}
Propchange: llvm/trunk/test/ExecutionEngine/2010-01-15-UndefValue.ll
------------------------------------------------------------------------------
svn:keywords = Id URL
More information about the llvm-commits
mailing list