llvm/llvm/test/CodeGen/AMDGPU/i8-to-double-to-float.ll

;RUN: llc < %s -mtriple=r600 -mcpu=redwood | FileCheck %s

;CHECK: UINT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}

define amdgpu_kernel void @test(ptr addrspace(1) %out, ptr addrspace(1) %in) {
  %1 = load i8, ptr addrspace(1) %in
  %2 = uitofp i8 %1 to double
  %3 = fptrunc double %2 to float
  store float %3, ptr addrspace(1) %out
  ret void
}