llvm-65816/test/ExecutionEngine/MCJIT/2010-01-15-UndefValue.ll

9 lines
196 B
LLVM

; RUN: %lli_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
}