From: tecodev Date: Mon, 17 Sep 2007 18:57:08 +0000 (+0000) Subject: * src/pic16/device.c: reverted to previous version X-Git-Url: https://git.gag.com/?p=fw%2Fsdcc;a=commitdiff_plain;h=5fdc38e8480a92765814e611cc2a0892f429c7b6 * src/pic16/device.c: reverted to previous version * device/lib/pic16/Makefile.common.in: quieten gpasm via -Wa,-q git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4916 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index e912c03b..3e6c1629 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-09-17 Raphael Neider + + * src/pic16/device.c: reverted to previous version + * device/lib/pic16/Makefile.common.in: quieten gpasm via -Wa,-q + 2007-09-16 Raphael Neider * src/pic16/device.c (pic16_dump_usection): do not reserve 0 bytes, diff --git a/device/lib/pic16/Makefile.common.in b/device/lib/pic16/Makefile.common.in index 3c30f4e0..a5ac1c1a 100644 --- a/device/lib/pic16/Makefile.common.in +++ b/device/lib/pic16/Makefile.common.in @@ -31,6 +31,7 @@ CFLAGS ?= CFLAGS += -mpic16 -p18f$(ARCH) CFLAGS += --std-c99 CFLAGS += -I. -I$(top_srcdir)/../../include/pic16 +CFLAGS += -Wa,-q ################################################# ### optimization flags diff --git a/src/pic16/device.c b/src/pic16/device.c index 2c8a1a5f..8878ed07 100644 --- a/src/pic16/device.c +++ b/src/pic16/device.c @@ -212,7 +212,7 @@ void pic16_dump_usection(FILE *of, set *section, int fix) } if(r1 && (init_addr == r1->address)) { - fprintf(of, "\n%s\n", r->name); + fprintf(of, "\n%s\tres\t0\n", r->name); } else { fprintf(of, "%s\tres\t%d\n", r->name, r->size); deb_addr += r->size;