Hi!
The code what I asked above:
v &= ~SYM_EXTENDED;
if (v >= SYM_EXTENDED) {
}
I think that a rigth code must be:
if (v >= SYM_EXTENDED) {
}
v &= ~SYM_EXTENDED;I don't know if v can be negative, but the first version is wrong even for the positive v (as I understand) _______________________________________________ Tinycc-devel mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/tinycc-devel
