blob: a6d18e7919ccb7e7646a85ebd88b33b01706fc6f (
plain)
1
2
3
4
5
6
7
8
|
; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -force-interpreter=true %s > /dev/null
define i32 @main() {
%a = add i32 0, undef
%b = fadd float 0.0, undef
%c = fadd double 0.0, undef
ret i32 0
}
|