Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / VectorCombine / AMDGPU / as-transition-inseltpoison.ll
blob36ea20f01871c6d18ca415fd7b0452916a377cd1
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -passes=vector-combine -S -mtriple=amdgcn-amd-amdhsa | FileCheck %s --check-prefixes=CHECK
4 ; ModuleID = 'load-as-transition.ll'
5 target datalayout = "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-p7:160:256:256:32-p8:128:128-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5-ni:7:8"
6 target triple = "amdgcn-amd-amdhsa"
8 %struct.hoge = type { float }
10 define protected amdgpu_kernel void @load_from_other_as(ptr nocapture nonnull %resultptr) local_unnamed_addr #0 {
11 ; CHECK-LABEL: @load_from_other_as(
12 ; CHECK-NEXT:  bb:
13 ; CHECK-NEXT:    [[A:%.*]] = alloca [[STRUCT_HOGE:%.*]], align 4, addrspace(5)
14 ; CHECK-NEXT:    [[TMP0:%.*]] = addrspacecast ptr addrspace(5) [[A]] to ptr
15 ; CHECK-NEXT:    [[TMP1:%.*]] = load <1 x float>, ptr [[TMP0]], align 4
16 ; CHECK-NEXT:    [[E:%.*]] = shufflevector <1 x float> [[TMP1]], <1 x float> poison, <4 x i32> <i32 0, i32 poison, i32 poison, i32 poison>
17 ; CHECK-NEXT:    store <4 x float> [[E]], ptr [[RESULTPTR:%.*]], align 16
18 ; CHECK-NEXT:    ret void
20 bb:
21   %a = alloca %struct.hoge, align 4, addrspace(5)
22   %b = addrspacecast ptr addrspace(5) %a to ptr
23   %d = load float, ptr %b, align 4
24   %e = insertelement <4 x float> poison, float %d, i32 0
25   store <4 x float> %e, ptr %resultptr, align 16
26   ret void
29 attributes #0 = { "use-soft-float"="false" }
31 !llvm.ident = !{!0}
33 !0 = !{!"clang version 12.0.0"}