Hi! There is the following problem:
struct {
    int c[2];
} cases[1] = {
    ((int)0+(int)1) + ((int)0+(int)1), 1 // error: ',' expected (got "+")
    // 1, ((int)0+(int)1) + ((int)0+(int)1) // OK
    // (int) ((int)0+(int)1) + ((int)0+(int)1) // OK
    // + ((int)0+(int)1) + ((int)0+(int)1), 1 // OK
};
int main() { return 0; }

Looks like some variable is not inited. I want to simulate a last case
for a problem solution. How todo this? Any tips?

PS: this is a last problem with the J interpreter compilation by tcc

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

Reply via email to