mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
10 lines
282 B
LLVM
10 lines
282 B
LLVM
|
; RUN: llc < %s -march=r600 -mcpu=SI | FileCheck %s --check-prefix=CHECK
|
||
|
|
||
|
; CHECK: @fp64_to_sint
|
||
|
; CHECK: V_CVT_I32_F64_e32
|
||
|
define void @fp64_to_sint(i32 addrspace(1)* %out, double %in) {
|
||
|
%result = fptosi double %in to i32
|
||
|
store i32 %result, i32 addrspace(1)* %out
|
||
|
ret void
|
||
|
}
|