[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / SPIRV / OpVectorInsertDynamic.ll
blob8da39a131524965fcc3c34ecd0a9d5c5d1bbea68
1 ;; uint8 foo(uint8 c, unsigned i) {
2 ;;   c[i] = 42;
3 ;;   return c;
4 ;; }
6 ; RUN: llc -O0 -mtriple=spirv32-unknown-unknown %s -o - | FileCheck %s
8 ; CHECK: %[[#TypeInt:]] = OpTypeInt 32
9 ; CHECK: %[[#TypeVector:]] = OpTypeVector %[[#TypeInt]] 8
10 ; CHECK: %[[#]] = OpVectorInsertDynamic %[[#TypeVector]]
12 define spir_func <8 x i32> @foo(<8 x i32> %c, i32 %i) local_unnamed_addr {
13 entry:
14   %vecins = insertelement <8 x i32> %c, i32 42, i32 %i
15   ret <8 x i32> %vecins