blob: 7d646ebdeb9d6441ef178b8e697566cc3008e629 (
plain)
1
2
3
4
5
6
7
8
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
}
|