tinycc/tests
Michael Matz 9e86ebee94 struct-init: Correctly parse unnamed member initializers
For
  union U { struct {int a,b}; int c; };
  union U u = {{ 1, 2, }};
The unnamed first member of union U needs to actually exist in the
structure so initializer parsing isn't confused about the double braces.
That means also the a and b members must be part of _that_, not of
union U directly.  Which in turn means we need to do a bit more work
for field lookup.

See the testcase extension for more things that need to work.
2016-12-15 17:47:09 +01:00
..
pp
tests2 struct-init: Correctly parse unnamed member initializers 2016-12-15 17:47:09 +01:00
abitest.c
asmtest.S
boundtest.c
gcctestsuite.sh
libtcc_test.c
Makefile
tcctest.c
tcctest.h
tcctest.py
testfp.c
vla_test.c