blob: 7d646ebdeb9d6441ef178b8e697566cc3008e629 [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
6 %b = add float 0.0, undef
7 %c = add double 0.0, undef
8 ret i32 0
9}