C1 compilation of a simple function like this works
static int test(V arr[], int i) {
return arr[i].v1;
}
But replacing "i" with "1" will cause an assert during compilation.
static int test(V arr[], int i) {
return arr[i].v1;
}
But replacing "i" with "1" will cause an assert during compilation.