Fix to previous fix
This commit is contained in:
parent
30de1bcf3f
commit
f442ba9141
1 changed files with 2 additions and 2 deletions
|
@ -624,9 +624,9 @@ bss(idf)
|
||||||
#endif /* DBSYMTAB */
|
#endif /* DBSYMTAB */
|
||||||
if (df->df_type->tp_size <= 0) {
|
if (df->df_type->tp_size <= 0) {
|
||||||
if (df->df_sc != STATIC &&
|
if (df->df_sc != STATIC &&
|
||||||
df->df_type->tp_fund == ARRAY && df->df_type->next) {
|
df->df_type->tp_fund == ARRAY && df->df_type->tp_up) {
|
||||||
C_df_dnam(idf->id_text);
|
C_df_dnam(idf->id_text);
|
||||||
C_bss_cst(ATW(df->df_type->next->tp_size), (arith)0, 1);
|
C_bss_cst(ATW(df->df_type->tp_up->tp_size), (arith)0, 1);
|
||||||
}
|
}
|
||||||
else error("size of %s unknown (\"%s\", line %d)"
|
else error("size of %s unknown (\"%s\", line %d)"
|
||||||
, idf->id_text, df->df_file, df->df_line);
|
, idf->id_text, df->df_file, df->df_line);
|
||||||
|
|
Loading…
Reference in a new issue