llvm-svn: 93511
This commit is contained in:
Jay Foad 2010-01-15 11:29:26 +00:00
parent 38836f0f39
commit 306f155a84
1 changed files with 9 additions and 0 deletions

View File

@ -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
}