[llvm-objdump] - Remove one overload of reportError. NFCI.
[llvm-complete.git] / test / CodeGen / AMDGPU / GlobalISel / irtranslator-struct-return-intrinsics.ll
blobf45037027147ff84bde788ea3894fb40d8a93886
1 ; NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 ; RUN: llc -mtriple=amdgcn-mesa-mesa3d -global-isel -stop-after=irtranslator -o - %s | FileCheck %s
4 declare { float, i1 } @llvm.amdgcn.div.scale.f32(float, float, i1)
6 define amdgpu_ps void @test_div_scale(float %arg0, float %arg1) {
7   ; CHECK-LABEL: name: test_div_scale
8   ; CHECK: bb.1 (%ir-block.0):
9   ; CHECK:   liveins: $vgpr0, $vgpr1
10   ; CHECK:   [[COPY:%[0-9]+]]:_(s32) = COPY $vgpr0
11   ; CHECK:   [[COPY1:%[0-9]+]]:_(s32) = COPY $vgpr1
12   ; CHECK:   [[C:%[0-9]+]]:_(s1) = G_CONSTANT i1 true
13   ; CHECK:   [[DEF:%[0-9]+]]:_(p1) = G_IMPLICIT_DEF
14   ; CHECK:   [[DEF1:%[0-9]+]]:_(p1) = G_IMPLICIT_DEF
15   ; CHECK:   [[INT:%[0-9]+]]:_(s32), [[INT1:%[0-9]+]]:_(s1) = G_INTRINSIC intrinsic(@llvm.amdgcn.div.scale), [[COPY]](s32), [[COPY1]](s32), [[C]](s1)
16   ; CHECK:   [[SEXT:%[0-9]+]]:_(s32) = G_SEXT [[INT1]](s1)
17   ; CHECK:   G_STORE [[INT]](s32), [[DEF]](p1) :: (store 4 into `float addrspace(1)* undef`, addrspace 1)
18   ; CHECK:   G_STORE [[SEXT]](s32), [[DEF1]](p1) :: (store 4 into `i32 addrspace(1)* undef`, addrspace 1)
19   ; CHECK:   S_ENDPGM
20   %call = call { float, i1 } @llvm.amdgcn.div.scale.f32(float %arg0, float %arg1, i1 true)
21   %extract0 = extractvalue { float, i1 } %call, 0
22   %extract1 = extractvalue { float, i1 } %call, 1
23   %ext = sext i1 %extract1 to i32
24   store float %extract0, float addrspace(1)* undef
25   store i32 %ext, i32 addrspace(1)* undef
26   ret void