wgtdkp / wgtcc

A small C11 compiler
MIT License
765 stars 130 forks source link

incorrect constant implementation #50

Open huangguiyang opened 6 years ago

huangguiyang commented 6 years ago
char c[((unsigned)-1 >> 2) + 1];

The size should be 1073741824, but wgtcc fold it to 0.