mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
95f870ece4
- Also, switch tests to not using llvm-as. They run 20% faster now, not that it matters. llvm-svn: 118952
9 lines
177 B
LLVM
9 lines
177 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
|
|
}
|