bolt/deps/llvm-18.1.8/llvm/test/ExecutionEngine/2010-01-15-UndefValue.ll
2025-02-14 19:21:04 +01:00

9 lines
254 B
LLVM

; RUN: %lli -jit-kind=mcjit -force-interpreter=true %s
define i32 @main() {
%a = add i32 0, undef
%b = fadd float 0.0, undef
%c = fadd double 0.0, undef
%d = insertvalue {i32, [4 x i32]} undef, i32 1, 1, 2
ret i32 0
}