Add comment about undef'd symbols

that they can also be put in the main symbol table, since all code is
made to work with that scenario.
This commit is contained in:
Olaf Seibert 2021-05-30 21:52:08 +02:00
parent 72eae62c45
commit 354aadfdc0

View File

@ -214,7 +214,9 @@ void implicit_gbl(
add_sym(value->data.symbol->label, 0, SYMBOLFLAG_GLOBAL, &absolute_section, &implicit_st);
} else {
/* or add it to the undefined symbol table,
purely for listing purposes. */
purely for listing purposes.
It also works to add it to symbol_st,
all code is carefully made for that. */
add_sym(value->data.symbol->label, 0, SYMBOLFLAG_UNDEFINED, &absolute_section, &undefined_st);
}
}