mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
e9ebbe5559
I am sure we will be finding bits and pieces of dead code for years to come, but this is a good start. Thanks to Lang Hames for making MCJIT a good replacement! llvm-svn: 215111
9 lines
190 B
LLVM
9 lines
190 B
LLVM
; RUN: %lli -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
|
|
}
|