[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / llvm / test / CodeGen / SPIRV / instructions / undef-nested-composite-store.ll
blob98993ef3bced09416c8da487bc00804319692579
1 ; RUN: llc -verify-machineinstrs -O0 -mtriple=spirv32-unknown-unknown %s -o - | FileCheck %s
3 ; CHECK-DAG: %[[#I32:]] = OpTypeInt 32
4 ; CHECK-DAG: %[[#I16:]] = OpTypeInt 16
5 ; CHECK-DAG: %[[#STRUCT:]] = OpTypeStruct %[[#I32]] %[[#I16]]
6 ; CHECK-DAG: %[[#NESTED_STRUCT:]] = OpTypeStruct %[[#STRUCT]] %[[#I16]]
7 ; CHECK-DAG: %[[#UNDEF:]] = OpUndef %[[#NESTED_STRUCT]]
9 ; CHECK: %[[#]] = OpFunction %[[#]] None %[[#]]
10 ; CHECK: %[[#]] = OpLabel
11 ; CHECK: OpStore %[[#]] %[[#UNDEF]] Aligned 4
12 ; CHECK: OpReturn
13 ; CHECK: OpFunctionEnd
15 %struct = type {
16   i32,
17   i16
20 %nested_struct = type {
21   %struct,
22   i16
25 define void @foo(ptr %ptr) {
26   store %nested_struct undef, ptr %ptr
27   ret void