blob: a562693ddadccd348ceea6b56c2af80d53a35f6a [file] [log] [blame]
#version 310 es
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void unused_entry_point() {
return;
}
void c(int x, int y, int z) {
int a = (((1 + x) + y) + z);
a = (a + 2);
}
void b() {
c(1, 2, 3);
c(4, 5, 6);
}