[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / skip-promote-alloca-vector-users.ll
blob47b40f7e8b51f2414fabdd02c0ef38c40fd024fa
1 ; RUN: opt -S -mtriple=amdgcn-amd-amdhsa -amdgpu-promote-alloca < %s | FileCheck %s
3 ; Do not promote an alloca with users of vector/aggregate type.
5 ; CHECK-LABEL: @test_insertelement(
6 ; CHECK:  %alloca = alloca i16
7 ; CHECK-NEXT:  insertelement <2 x i16*> undef, i16* %alloca, i32 0
8 define amdgpu_kernel void @test_insertelement() #0 {
9 entry:
10   %alloca = alloca i16, align 4
11   %in = insertelement <2 x i16*> undef, i16* %alloca, i32 0
12   store <2 x i16*> %in, <2 x i16*>* undef, align 4
13   ret void
16 ; CHECK-LABEL: @test_insertvalue(
17 ; CHECK:  %alloca = alloca i16
18 ; CHECK-NEXT:  insertvalue { i16* } undef, i16* %alloca, 0
19 define amdgpu_kernel void @test_insertvalue() #0 {
20 entry:
21   %alloca = alloca i16, align 4
22   %in = insertvalue { i16* } undef, i16* %alloca, 0
23   store { i16* } %in, { i16* }* undef, align 4
24   ret void
27 ; CHECK-LABEL: @test_insertvalue_array(
28 ; CHECK:  %alloca = alloca i16
29 ; CHECK-NEXT:  insertvalue [2 x i16*] undef, i16* %alloca, 0
30 define amdgpu_kernel void @test_insertvalue_array() #0 {
31 entry:
32   %alloca = alloca i16, align 4
33   %in = insertvalue [2 x i16*] undef, i16* %alloca, 0
34   store [2 x i16*] %in, [2 x i16*]* undef, align 4
35   ret void
38 attributes #0 = { nounwind }