insert_to_input() is moved to the start of the decl_initializer() and
result is better:
struct {
    int c[2];
// } cases[2] = { // OK
} cases[] = {  // error: ',' expected (got "+")
    ((int)0+(int)1) + ((int)0+(int)1), 1,
    ((int)0+(int)1) + ((int)0+(int)1), 1
};
int main() { return 0; }

Strange... Why it depends on the cases[] declaration?

_______________________________________________
Tinycc-devel mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to