mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
6b3f6a744a
This reverts commit 98ce62780e
.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187526 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
519 B
LLVM
17 lines
519 B
LLVM
; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck --check-prefix=R600-CHECK %s
|
|
; RUN: llc < %s -march=r600 -mcpu=verde | FileCheck --check-prefix=SI-CHECK %s
|
|
|
|
; R600-CHECK: @amdgpu_trunc
|
|
; R600-CHECK: TRUNC * T{{[0-9]+\.[XYZW]}}, KC0[2].Z
|
|
; SI-CHECK: @amdgpu_trunc
|
|
; SI-CHECK: 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
|