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
14 lines
333 B
LLVM
14 lines
333 B
LLVM
; RUN: lli %s > /dev/null
|
|
|
|
define i32 @foo(i32 %X, i32 %Y, double %A) {
|
|
%cond212 = fcmp une double %A, 1.000000e+00 ; <i1> [#uses=1]
|
|
%cast110 = zext i1 %cond212 to i32 ; <i32> [#uses=1]
|
|
ret i32 %cast110
|
|
}
|
|
|
|
define i32 @main() {
|
|
%reg212 = call i32 @foo( i32 0, i32 1, double 1.000000e+00 ) ; <i32> [#uses=1]
|
|
ret i32 %reg212
|
|
}
|
|
|