Removed some debug output.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5228 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
61f3e1dce3
commit
bc0f3fd99b
1 changed files with 0 additions and 3 deletions
|
@ -562,10 +562,8 @@ void SymCheck (void)
|
|||
*/
|
||||
if (S->Flags & SF_GLOBAL) {
|
||||
if (S->Flags & SF_DEFINED) {
|
||||
printf ("ExportFromGlobal: %s\n", SB_GetConstBuf (GetSymName (S)));
|
||||
SymExportFromGlobal (S);
|
||||
} else {
|
||||
printf ("ImportFromGlobal: %s\n", SB_GetConstBuf (GetSymName (S)));
|
||||
SymImportFromGlobal (S);
|
||||
}
|
||||
}
|
||||
|
@ -573,7 +571,6 @@ void SymCheck (void)
|
|||
/* Handle undefined symbols */
|
||||
if ((S->Flags & SF_UNDEFMASK) == SF_UNDEFVAL) {
|
||||
/* This is an undefined symbol. Handle it. */
|
||||
printf ("Undefined: %s\n", SB_GetConstBuf (GetSymName (S)));
|
||||
SymCheckUndefined (S);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue