From 631c553233798d7a4004b15e47bf180199d19cb9 Mon Sep 17 00:00:00 2001 From: uz Date: Fri, 20 Jan 2012 16:04:37 +0000 Subject: [PATCH] Reverted some errorneously committed changes which enabled debug output. git-svn-id: svn://svn.cc65.org/cc65/trunk@5414 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/preproc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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