blob: 6627601f801e39ca2a735acf30863c1dbd7b62fc [file] [log] [blame]
RWByteAddressBuffer s : register(u0);
static int a = 1;
static int a__ = 2;
[numthreads(1, 1, 1)]
void f() {
int b = a;
int b__ = a__;
s.Store(0u, asuint((b + b__)));
return;
}