blob: 175192063571ef631a03016ea6a22be9ee88ec7f [file] [log] [blame]
groupshared int v[128];
int foo() {
GroupMemoryBarrierWithGroupSync();
int v_1[128] = v;
GroupMemoryBarrierWithGroupSync();
int v_2[128] = v_1;
return v_2[0];
}
[numthreads(1, 1, 1)]
void unused_entry_point() {
}