diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2005-01-28 23:08:16 +0100 |
---|---|---|
committer | Stephane Carrez <ciceron@gcc.gnu.org> | 2005-01-28 23:08:16 +0100 |
commit | 3a951664dfb1f878b500f14c181b77c303276ea6 (patch) | |
tree | 1855e4bc81455021aac666529f2b85c8711c1874 /gcc | |
parent | 7536f1ed9d07d48ca5ca8635e2ed77182df71d52 (diff) | |
download | gcc-3a951664dfb1f878b500f14c181b77c303276ea6.zip gcc-3a951664dfb1f878b500f14c181b77c303276ea6.tar.gz gcc-3a951664dfb1f878b500f14c181b77c303276ea6.tar.bz2 |
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: r94390
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/m68hc11/t-m68hc11-gas | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 08fc4c2..7f183d9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-01-28 Stephane Carrez <stcarrez@nerim.fr> + + 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-28 Roger Sayle <roger@eyesopen.com> * expmed.c (expand_mult_highpart_optab): When attempting to use diff --git a/gcc/config/m68hc11/t-m68hc11-gas b/gcc/config/m68hc11/t-m68hc11-gas index 8bbbf3c..b8450a6 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 |