blob: fa2e379ef7b4a34686de6494be2d3565e1ec303c [file] [log] [blame]
Matt Arsenaultb0df9252014-07-10 03:22:20 +00001; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s
2
3declare i16 @llvm.convert.to.fp16(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]]
9define 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(float %val) nounwind readnone
12 store i16 %cvt, i16 addrspace(1)* %out, align 2
13 ret void
14}