Removed some debug output.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5228 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -562,10 +562,8 @@ void SymCheck (void)
|
|||||||
*/
|
*/
|
||||||
if (S->Flags & SF_GLOBAL) {
|
if (S->Flags & SF_GLOBAL) {
|
||||||
if (S->Flags & SF_DEFINED) {
|
if (S->Flags & SF_DEFINED) {
|
||||||
printf ("ExportFromGlobal: %s\n", SB_GetConstBuf (GetSymName (S)));
|
|
||||||
SymExportFromGlobal (S);
|
SymExportFromGlobal (S);
|
||||||
} else {
|
} else {
|
||||||
printf ("ImportFromGlobal: %s\n", SB_GetConstBuf (GetSymName (S)));
|
|
||||||
SymImportFromGlobal (S);
|
SymImportFromGlobal (S);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -573,7 +571,6 @@ void SymCheck (void)
|
|||||||
/* Handle undefined symbols */
|
/* Handle undefined symbols */
|
||||||
if ((S->Flags & SF_UNDEFMASK) == SF_UNDEFVAL) {
|
if ((S->Flags & SF_UNDEFMASK) == SF_UNDEFVAL) {
|
||||||
/* This is an undefined symbol. Handle it. */
|
/* This is an undefined symbol. Handle it. */
|
||||||
printf ("Undefined: %s\n", SB_GetConstBuf (GetSymName (S)));
|
|
||||||
SymCheckUndefined (S);
|
SymCheckUndefined (S);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user