blob: 2a150993a16a87094072e355084526fc084eaa7c [file] [log] [blame]
struct MyStruct {
float f1;
};
static int v1 = 1;
static uint v2 = 1u;
static float v3 = 1.0f;
static int3 v4 = (1).xxx;
static uint3 v5 = uint3(1u, 2u, 3u);
static float3 v6 = float3(1.0f, 2.0f, 3.0f);
static const MyStruct c = {1.0f};
static MyStruct v7 = c;
static float v8[10] = (float[10])0;
static int v9 = 0;
static uint v10 = 0u;
static float v11 = 0.0f;
static MyStruct v12 = (MyStruct)0;
static MyStruct v13 = (MyStruct)0;
static float v14[10] = (float[10])0;
static int3 v15 = int3(1, 2, 3);
static float3 v16 = float3(1.0f, 2.0f, 3.0f);
[numthreads(1, 1, 1)]
void f() {
int l1 = v1;
uint l2 = v2;
float l3 = v3;
int3 l4 = v4;
uint3 l5 = v5;
float3 l6 = v6;
MyStruct l7 = v7;
float l8[10] = v8;
int l9 = v9;
uint l10 = v10;
float l11 = v11;
MyStruct l12 = v12;
MyStruct l13 = v13;
float l14[10] = v14;
int3 l15 = v15;
float3 l16 = v16;
return;
}