mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
dd9ab77318
Currently the default C calling convention functions are treated the same as compute kernels. Make this explicit so the default calling convention can be changed to a non-kernel. Converted with perl -pi -e 's/define void/define amdgpu_kernel void/' on the relevant test directories (and undoing in one place that actually wanted a non-kernel). llvm-svn: 298444
12 lines
468 B
LLVM
12 lines
468 B
LLVM
; RUN: llc -march=r600 -mcpu=cypress -verify-machineinstrs < %s | FileCheck -check-prefix=EG %s
|
|
|
|
declare float @llvm.r600.recipsqrt.clamped.f32(float) nounwind readnone
|
|
|
|
; EG-LABEL: {{^}}rsq_clamped_f32:
|
|
; EG: RECIPSQRT_CLAMPED
|
|
define amdgpu_kernel void @rsq_clamped_f32(float addrspace(1)* %out, float %src) nounwind {
|
|
%rsq_clamped = call float @llvm.r600.recipsqrt.clamped.f32(float %src)
|
|
store float %rsq_clamped, float addrspace(1)* %out, align 4
|
|
ret void
|
|
}
|