blob: f2db1079da2eb6111f9417c573822f1191506661 [file] [log] [blame]
struct S {
int4 a[4];
};
static int counter = int(0);
int foo() {
counter = (counter + int(1));
return counter;
}
int bar() {
counter = (counter + int(2));
return counter;
}
void main() {
S x = (S)0;
S p = x;
int4 v = p.a[foo()];
int v_1 = bar();
v[v_1] = (v[v_1] + int(5));
}
[numthreads(1, 1, 1)]
void unused_entry_point() {
}