diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2001-03-27 20:09:27 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2001-03-27 20:09:27 +0000 |
commit | 0b29309adf64a5545445c15b772eae3a615df81f (patch) | |
tree | 89486751bfd4edb64848cf6834fbe7b6f3cef570 /gcc/config.gcc | |
parent | ec0104b3bc0c3adcda826a1a8c6749e076a597e3 (diff) | |
download | gcc-0b29309adf64a5545445c15b772eae3a615df81f.zip gcc-0b29309adf64a5545445c15b772eae3a615df81f.tar.gz gcc-0b29309adf64a5545445c15b772eae3a615df81f.tar.bz2 |
config.gcc (m68hc11-*-*, [...]): Convert to new tm.h inclusion style.
* config.gcc (m68hc11-*-*, m68hc12-*-*): Convert to new tm.h
inclusion style. xm-m68hc11.h no longer exists.
* config/m68hc11/xm-m68hc11.h: Delete file.
* config/m68hc11/m68hc12.h: Convert to new tm.h inclusion style.
* config/m68hc11/m68hc11.h: Convert to new tm.h inclusion style.
Don't define GCC_VERSION, N_, or PARAMS; don't include
gansidecl.h or stdio.h. Define inhibit_libc here.
Make code conditioned on #if GCC_VERSION > 2095 unconditional.
Delete code conditioned on #if GCC_VERSION == 2095.
* config/m68hc11/m68hc11-protos.h, config/m68hc11/m68hc11.c:
Make code conditioned on #if GCC_VERSION > 2095 unconditional.
Delete code conditioned on #if GCC_VERSION == 2095.
From-SVN: r40878
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 8a37cb7..7fe802b 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1595,17 +1595,15 @@ m32r-*-elf*) ;; # m68hc11 and m68hc12 share the same machine description. m68hc11-*-*|m6811-*-*) - tm_file="m68hc11/m68hc11.h" - xm_file="m68hc11/xm-m68hc11.h" + tm_file="elfos.h m68hc11/m68hc11.h" tm_p_file="m68hc11/m68hc11-protos.h" md_file="m68hc11/m68hc11.md" out_file="m68hc11/m68hc11.c" tmake_file="m68hc11/t-m68hc11-gas" ;; m68hc12-*-*|m6812-*-*) - tm_file="m68hc11/m68hc12.h" + tm_file="m68hc11/m68hc12.h elfos.h m68hc11/m68hc11.h" tm_p_file="m68hc11/m68hc11-protos.h" - xm_file="m68hc11/xm-m68hc11.h" md_file="m68hc11/m68hc11.md" out_file="m68hc11/m68hc11.c" tmake_file="m68hc11/t-m68hc11-gas" |