From: michaelh Date: Sun, 23 Sep 2001 18:43:52 +0000 (+0000) Subject: Turned off debugging messages X-Git-Url: https://git.gag.com/?a=commitdiff_plain;ds=sidebyside;h=fdc44b6814e4e6b0161c4fb8466230bf6f5e65a3;p=fw%2Fsdcc Turned off debugging messages git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1304 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCmacro.c b/src/SDCCmacro.c index 49db2a0e..c93a11bb 100644 --- a/src/SDCCmacro.c +++ b/src/SDCCmacro.c @@ -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); diff --git a/src/SDCCutil.c b/src/SDCCutil.c index 5a3be477..9d8f8f64 100644 --- a/src/SDCCutil.c +++ b/src/SDCCutil.c @@ -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); }