Turned off debugging messages
authormichaelh <michaelh@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 23 Sep 2001 18:43:52 +0000 (18:43 +0000)
committermichaelh <michaelh@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 23 Sep 2001 18:43:52 +0000 (18:43 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1304 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/SDCCmacro.c
src/SDCCutil.c

index 49db2a0e3a83b73dcfca08a1a8fa3e69c71e0326..c93a11bbe842f2601d8b3e38cfa8644187f4a805 100644 (file)
@@ -67,8 +67,6 @@ _evalMacros(char *apinto, hTab *pvals, const char *pfrom)
              wassertl (0, "Invalid macro name");
             }
 
-          printf("Mapping %s to \"%s\"\n", name, pval);
-
           /* Replace */
           strcpy(pinto, pval);
           pinto += strlen(pval);
index 5a3be477c7fa7f8c50ed85d0266fa296025571e4..9d8f8f643851089ada349271140ccdd06d699e21 100644 (file)
@@ -185,8 +185,6 @@ void
 buildCmdLine2 (char *pbuffer, const char *pcmd)
 {
   char *poutcmd = msprintf(_mainValues, pcmd);
-  printf("In: \"%s\"\n", pcmd);
-  printf("Out: \"%s\"\n", poutcmd);
   strcpy(pbuffer, poutcmd);
 }