Skip to content

Commit

Permalink
Test case for http://llvm.org/PR6028.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93511 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
jayfoad committed Jan 15, 2010
1 parent 5b37012 commit 46a49da
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/ExecutionEngine/2010-01-15-UndefValue.ll
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit 46a49da

Please sign in to comment.