mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
973d44eb7c
Patch developed by Andy Kaylor and Daniel Malea. Reviewed on llvm-commits. llvm-svn: 148231
9 lines
178 B
LLVM
9 lines
178 B
LLVM
; 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
|
|
}
|