[ARM] Fix child-structure named initialisers.
Tricks like struct foo foo = { .bar.baz = 5, }; don't work. We must initialise child-structure members within their own block - ie, struct foo foo = { .bar = { .baz = 5, }, };
Showing
Please register or sign in to comment