* src/pic/ralloc.c (isData): suppress garbage debug output
authortecodev <tecodev@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Fri, 30 Mar 2007 15:45:46 +0000 (15:45 +0000)
committertecodev <tecodev@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Fri, 30 Mar 2007 15:45:46 +0000 (15:45 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4724 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
src/pic/ralloc.c

index 93c542982f50c1faf4b9fca09f4201cbd6da7fb5..de9801a95de848bba02cdf7e34438d1eba328ecf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-03-30 Raphael Neider <rneider AT web.de>
+
+       * src/pic/ralloc.c (isData): suppress garbage debug output
+
 2007-03-28 Maarten Brock <sourceforge.brock AT dse.nl>
 
        * device/include/mcs51/C8051F360.h: new, added
index 38db701321b4047c039e6210820b1254c1f4b485..5f9ff8c1ea329b5b789eb57b5d8ecb0623fcb09c 100644 (file)
@@ -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)