Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

llvm.r600.recipsqrt.clamped.ll
; 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
}