llvm-project/llvm/test/ExecutionEngine/Interpreter/2010-01-15-UndefValue.ll
Alex Bradbury e80d934aa6
[MCJIT][test] Move remaining MCJIT interpreter tests to Interpreter/ subdirectory (#124744)
I left these alone in #124463 but I think it makes sense to clean these
up as well (which Philip also noted in #124464).
2025-01-29 10:22:03 +00:00

10 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
}