aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/ExecutionEngine/Interpreter/2010-01-15-UndefValue.ll
blob: 5376fa232962ee3ef1cade9112894ca5b0c37aa8 (plain)
1
2
3
4
5
6
7
8
9
; 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
}