From: Stephane Carrez Date: Fri, 28 Jan 2005 22:18:27 +0000 (+0100) Subject: re PR target/15384 (Lines witout effect in t-m68hc11-gas file) X-Git-Tag: releases/gcc-3.4.4~262 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=548b8a81adf91f9085a11096098ae0d315ee7185;p=thirdparty%2Fgcc.git re PR target/15384 (Lines witout effect in t-m68hc11-gas file) PR target/15384 * config/m68hc11/t-m68hc11-gas (dp-bit.c): Fix typo causing a configuration part of dp-bit.c to be lost. From-SVN: r94392 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index aa2c259e4d65..2c59bc17fdd1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-01-28 Stephane Carrez + + PR target/15384 + * config/m68hc11/t-m68hc11-gas (dp-bit.c): Fix typo causing a + configuration part of dp-bit.c to be lost. + 2005-01-27 Ulrich Weigand PR target/17771 diff --git a/gcc/config/m68hc11/t-m68hc11-gas b/gcc/config/m68hc11/t-m68hc11-gas index 8bbbf3c450d5..b8450a682371 100644 --- a/gcc/config/m68hc11/t-m68hc11-gas +++ b/gcc/config/m68hc11/t-m68hc11-gas @@ -27,7 +27,7 @@ LIB1ASMFUNCS = _mulsi3 \ _ashrhi3 _lshrhi3 _lshlhi3 _ashrqi3 _lshlqi3 _map_data _init_bss \ _ctor _dtor _far_tramp _call_far _return_far -TARGET_LIBGCC2_CFLAGS = -DUSE_GAS -DIN_GCC +TARGET_LIBGCC2_CFLAGS = -DUSE_GAS -DIN_GCC -Dinhibit_libc # C implementation of 32-bit div/mod. LIB2FUNCS_EXTRA = $(srcdir)/config/udivmodsi4.c \ @@ -53,7 +53,7 @@ DPBIT = dp-bit.c dp-bit.c: $(srcdir)/config/fp-bit.c echo '#define SMALL_MACHINE' >> dp-bit.c echo '#define CMPtype HItype' >> dp-bit.c - echo '#ifdef __LITTLE_ENDIAN__' > dp-bit.c + echo '#ifdef __LITTLE_ENDIAN__' >> dp-bit.c echo '#define FLOAT_BIT_ORDER_MISMATCH' >>dp-bit.c echo '#endif' >> dp-bit.c cat $(srcdir)/config/fp-bit.c >> dp-bit.c