git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93511 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jay Foad 2010-01-15 11:29:26 +00:00
parent 5b3701256c
commit 46a49da410

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
}