Removed some debug output.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5228 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-08-19 11:30:31 +00:00
parent 61f3e1dce3
commit bc0f3fd99b

View file

@ -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);
}