Files
tinycc/tests
Arthur Williams 355897a920 Allow declared arrays to be initialized without an explicit size
When defining an array with non-explicit size, one would get
"incompatible types for redefinition of 'array' if the array was already
declared with a different size.
For example:

    extern int array[2];
    int array[] = {1};

would fail to compile with tcc. Instead the above is now equivalent to:
    int array[] = {1, 0};
2021-02-13 19:18:08 -08:00
..
2020-12-16 17:52:59 +01:00
2017-09-24 18:03:26 -07:00
2021-02-13 01:03:41 +01:00
2020-12-16 17:52:59 +01:00
2020-12-16 17:52:59 +01:00
2017-12-03 04:53:50 +01:00
2021-01-12 18:06:23 +01:00
2020-09-17 09:11:10 +02:00
2020-07-05 14:01:50 +02:00
2021-01-24 18:00:33 +01:00
2016-12-15 17:47:08 +01:00
2016-10-01 20:27:41 +02:00