1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 21:29:03 +00:00

Remove debugging printf's

git-svn-id: svn://svn.cc65.org/cc65/trunk@2009 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-03-07 11:51:28 +00:00
parent 2c4652f58e
commit 2be826ded6

View File

@ -1121,11 +1121,9 @@ void WriteImports (void)
*/
S = SymList;
while (S) {
printf ("%s: %04X - ", S->Name, S->Flags);
if ((S->Flags & (SF_TRAMPOLINE | SF_IMPORT)) == SF_IMPORT &&
(S->Flags & (SF_REFERENCED | SF_FORCED)) != 0) {
printf ("imported\n");
if (S->Flags & SF_ZP) {
ObjWrite8 (IMP_ZP);
} else {
@ -1133,9 +1131,7 @@ void WriteImports (void)
}
ObjWriteStr (S->Name);
ObjWritePos (&S->Pos);
} else {
printf ("ignored\n");
}
}
S = S->List;
}