-fno-type-redefinition-check
commit2bfedb18675228c3837c23fa523231f55e102c12
authorseyko <seyko2@gmail.com>
Wed, 4 May 2016 14:17:51 +0000 (4 17:17 +0300)
committerseyko <seyko2@gmail.com>
Wed, 4 May 2016 14:17:51 +0000 (4 17:17 +0300)
tree87f6923b0b703b71d658fec261ecd51a8964ce54
parent78e4ee55b7243e856ad4257bd44564fd6a95bf91
-fno-type-redefinition-check

    don't catch redefinition for local vars. With this option on
    tcc accepts the following code:
    int main()
    {
        int a = 0;
        long a = 0;
    }
    But if you shure there is no problem with your local variables,
    then a compilation speed can be improved if you have a lots of
    the local variables (50000+)
libtcc.c
tcc.h
tccgen.c