X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcc65%2Fpreproc.c;h=8edeacdd79bb20ab8761b88f402feb3445358986;hb=35e1184901ca38bdb2e56d154ed3b71f6096eacc;hp=e5e592886674514e30d177dc5994ccfd4195ab3b;hpb=cbefb85d47255a314e5aef80195ef719c4489a43;p=cc65 diff --git a/src/cc65/preproc.c b/src/cc65/preproc.c index e5e592886..8edeacdd7 100644 --- a/src/cc65/preproc.c +++ b/src/cc65/preproc.c @@ -688,7 +688,7 @@ static void MacroCall (StrBuf* Target, Macro* M) static void ExpandMacro (StrBuf* Target, Macro* M) /* Expand a macro into Target */ { -#if 1 +#if 0 static unsigned V = 0; printf ("Expanding %s(%u)\n", M->Name, ++V); #endif @@ -727,7 +727,7 @@ static void ExpandMacro (StrBuf* Target, Macro* M) DoneMacroExp (&E); } -#if 1 +#if 0 printf ("Done with %s(%u)\n", M->Name, V--); #endif } @@ -845,7 +845,7 @@ static void DefineMacro (void) while (IsSpace (SB_LookAtLast (&M->Replacement))) { SB_Drop (&M->Replacement, 1); } -#if 1 +#if 0 printf ("%s: <%.*s>\n", M->Name, SB_GetLen (&M->Replacement), SB_GetConstBuf (&M->Replacement)); #endif