mirror of
https://github.com/cc65/cc65.git
synced 2025-04-04 21:33:30 +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:
parent
2c4652f58e
commit
2be826ded6
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user