1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00

Reverted some errorneously committed changes which enabled debug output.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5414 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2012-01-20 16:04:37 +00:00
parent cbefb85d47
commit 631c553233

View File

@ -688,7 +688,7 @@ static void MacroCall (StrBuf* Target, Macro* M)
static void ExpandMacro (StrBuf* Target, Macro* M) static void ExpandMacro (StrBuf* Target, Macro* M)
/* Expand a macro into Target */ /* Expand a macro into Target */
{ {
#if 1 #if 0
static unsigned V = 0; static unsigned V = 0;
printf ("Expanding %s(%u)\n", M->Name, ++V); printf ("Expanding %s(%u)\n", M->Name, ++V);
#endif #endif
@ -727,7 +727,7 @@ static void ExpandMacro (StrBuf* Target, Macro* M)
DoneMacroExp (&E); DoneMacroExp (&E);
} }
#if 1 #if 0
printf ("Done with %s(%u)\n", M->Name, V--); printf ("Done with %s(%u)\n", M->Name, V--);
#endif #endif
} }
@ -845,7 +845,7 @@ static void DefineMacro (void)
while (IsSpace (SB_LookAtLast (&M->Replacement))) { while (IsSpace (SB_LookAtLast (&M->Replacement))) {
SB_Drop (&M->Replacement, 1); SB_Drop (&M->Replacement, 1);
} }
#if 1 #if 0
printf ("%s: <%.*s>\n", M->Name, SB_GetLen (&M->Replacement), SB_GetConstBuf (&M->Replacement)); printf ("%s: <%.*s>\n", M->Name, SB_GetLen (&M->Replacement), SB_GetConstBuf (&M->Replacement));
#endif #endif