llvm-for-llvmta/test/ExecutionEngine/2010-01-15-UndefValue.ll

9 lines
178 B
LLVM
Raw Normal View History

2022-04-25 10:02:23 +02:00
; RUN: %lli -force-interpreter=true %s
define i32 @main() {
%a = add i32 0, undef
%b = fadd float 0.0, undef
%c = fadd double 0.0, undef
ret i32 0
}