diff options
author | ciceron <ciceron@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-28 22:08:16 +0000 |
---|---|---|
committer | ciceron <ciceron@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-28 22:08:16 +0000 |
commit | f6e0cfcb7b8c74319a24c3bd129b6e3aca9b6617 (patch) | |
tree | 1855e4bc81455021aac666529f2b85c8711c1874 /gcc/config/m68hc11/t-m68hc11-gas | |
parent | b31c2a9ff7b3d5c9abc4e01607d325d0aa5a03d9 (diff) | |
download | gcc-f6e0cfcb7b8c74319a24c3bd129b6e3aca9b6617.tar.gz |
PR target/15384
* config/m68hc11/t-m68hc11-gas (dp-bit.c): Fix typo causing a
configuration part of dp-bit.c to be lost.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94390 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/m68hc11/t-m68hc11-gas')
-rw-r--r-- | gcc/config/m68hc11/t-m68hc11-gas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m68hc11/t-m68hc11-gas b/gcc/config/m68hc11/t-m68hc11-gas index 8bbbf3c450d..b8450a68237 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 |