1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00
llvm-mirror/test/ExecutionEngine/2010-01-15-UndefValue.ll
2010-01-15 11:29:26 +00:00

10 lines
205 B
LLVM

; RUN: llvm-as %s -o %t.bc
; RUN: lli -force-interpreter=true %t.bc
define i32 @main() {
%a = add i32 0, undef
%b = add float 0.0, undef
%c = add double 0.0, undef
ret i32 0
}