mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 00:42:10 +00:00
[qfcc] Use dereference_type for initialized arrays
In particular, when the size is inferred from the compound initializer. Fixes a fun "incomplete type" error.
This commit is contained in:
parent
fa5c3ab12e
commit
6e71aadfa4
1 changed files with 2 additions and 2 deletions
|
@ -594,8 +594,8 @@ initialize_def (symbol_t *sym, const expr_t *init, defspace_t *space,
|
|||
if (!sym->s.def) {
|
||||
if (is_array (sym->type) && !type_size (sym->type)
|
||||
&& init && init->type == ex_compound) {
|
||||
sym->type = array_type (sym->type->t.array.type,
|
||||
num_elements (init));
|
||||
auto ele_type = dereference_type (sym->type);
|
||||
sym->type = array_type (ele_type, num_elements (init));
|
||||
}
|
||||
if (sym->type == &type_auto) {
|
||||
if (init) {
|
||||
|
|
Loading…
Reference in a new issue