rui314 / 8cc

A Small C Compiler
MIT License
6.12k stars 742 forks source link

tentative definitions not handled #70

Open andrewchambers opened 8 years ago

andrewchambers commented 8 years ago

int x;
int x = 0;
int x;

int
main()
{
    x = 0;
    return x;
}