R600: support f16 -> f64 conversion intrinsic.
[oota-llvm.git] / test / CodeGen / R600 / fp16_to_fp32.ll
1 ; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s
2
3 declare i16 @llvm.convert.to.fp16.f32(float) nounwind readnone
4
5 ; SI-LABEL: @test_convert_fp16_to_fp32:
6 ; SI: BUFFER_LOAD_DWORD [[VAL:v[0-9]+]]
7 ; SI: V_CVT_F16_F32_e32 [[RESULT:v[0-9]+]], [[VAL]]
8 ; SI: BUFFER_STORE_SHORT [[RESULT]]
9 define void @test_convert_fp16_to_fp32(i16 addrspace(1)* noalias %out, float addrspace(1)* noalias %in) nounwind {
10   %val = load float addrspace(1)* %in, align 4
11   %cvt = call i16 @llvm.convert.to.fp16.f32(float %val) nounwind readnone
12   store i16 %cvt, i16 addrspace(1)* %out, align 2
13   ret void
14 }