blob: 33ca63a02050abe4924bf6889cc9da69c6e77c40 [file] [log] [blame]
Jay Foad46a49da2010-01-15 11:29:26 +00001; RUN: llvm-as %s -o %t.bc
2; RUN: lli -force-interpreter=true %t.bc
3
4define i32 @main() {
5 %a = add i32 0, undef
Dan Gohmana9445e12010-03-02 01:11:08 +00006 %b = fadd float 0.0, undef
7 %c = fadd double 0.0, undef
Jay Foad46a49da2010-01-15 11:29:26 +00008 ret i32 0
9}