Fixed problem with array's of incomplete types
This commit is contained in:
@@ -624,7 +624,9 @@ bss(idf)
|
||||
#endif /* DBSYMTAB */
|
||||
if (df->df_type->tp_size <= 0) {
|
||||
if (df->df_sc != STATIC &&
|
||||
df->df_type->tp_fund == ARRAY && df->df_type->tp_up) {
|
||||
df->df_type->tp_fund == ARRAY &&
|
||||
df->df_type->tp_up &&
|
||||
df->df_type->tp_up->tp_size >= 0) {
|
||||
C_df_dnam(idf->id_text);
|
||||
C_bss_cst(ATW(df->df_type->tp_up->tp_size), (arith)0, 1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user