mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
953c681473
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239657 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
612 B
LLVM
18 lines
612 B
LLVM
; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck --check-prefix=R600 %s
|
|
; RUN: llc < %s -march=amdgcn -mcpu=verde -verify-machineinstrs | FileCheck --check-prefix=SI %s
|
|
; RUN: llc < %s -march=amdgcn -mcpu=tonga -verify-machineinstrs | FileCheck --check-prefix=SI %s
|
|
|
|
; R600: {{^}}amdgpu_trunc:
|
|
; R600: TRUNC T{{[0-9]+\.[XYZW]}}, KC0[2].Z
|
|
; SI: {{^}}amdgpu_trunc:
|
|
; SI: v_trunc_f32
|
|
|
|
define void @amdgpu_trunc(float addrspace(1)* %out, float %x) {
|
|
entry:
|
|
%0 = call float @llvm.AMDGPU.trunc(float %x)
|
|
store float %0, float addrspace(1)* %out
|
|
ret void
|
|
}
|
|
|
|
declare float @llvm.AMDGPU.trunc(float ) readnone
|