summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/MCJIT/2010-01-15-UndefValue.ll
blob: 7ed0e3870a3bc6f72041dfbede2b19cd7981f1b3 (plain)
1
2
3
4
5
6
7
8
; 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
}