From: tecodev Date: Fri, 30 Mar 2007 15:45:46 +0000 (+0000) Subject: * src/pic/ralloc.c (isData): suppress garbage debug output X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=2306cc90232619f5e4ad6752026edfe0e4345e60;p=fw%2Fsdcc * src/pic/ralloc.c (isData): suppress garbage debug output git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4724 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 93c54298..de9801a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-03-30 Raphael Neider + + * src/pic/ralloc.c (isData): suppress garbage debug output + 2007-03-28 Maarten Brock * device/include/mcs51/C8051F360.h: new, added diff --git a/src/pic/ralloc.c b/src/pic/ralloc.c index 38db7013..5f9ff8c1 100644 --- a/src/pic/ralloc.c +++ b/src/pic/ralloc.c @@ -3644,7 +3644,8 @@ void isData(sym_link *sl) { FILE *of = stderr; - if(!sl) + // avoid garbage `data' and `sfr' output + if(!sl || !debugF) return; if(debugF)