mirror of
https://github.com/mirror/tinycc.git
synced 2025-02-20 07:40:06 +08:00
Check whether structure fields have a type
This commit is contained in:
parent
505329b5b3
commit
981eb84d8a
3
tccgen.c
3
tccgen.c
@ -2764,7 +2764,8 @@ static void struct_decl(CType *type, int u)
|
|||||||
bit_pos = 0;
|
bit_pos = 0;
|
||||||
offset = 0;
|
offset = 0;
|
||||||
while (tok != '}') {
|
while (tok != '}') {
|
||||||
parse_btype(&btype, &ad);
|
if (parse_btype(&btype, &ad))
|
||||||
|
expect("type");
|
||||||
while (1) {
|
while (1) {
|
||||||
bit_size = -1;
|
bit_size = -1;
|
||||||
v = 0;
|
v = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user