diff options
author | John David Anglin <dave@hiauly1.hia.nrc.ca> | 2002-05-31 04:00:42 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2002-05-31 04:00:42 +0000 |
commit | 806bf4137dfb55d775e8e1b9040f69ac557a44ad (patch) | |
tree | bb0d1e3b8a7c38edbb257144df3c362c8961998c /gcc/config.gcc | |
parent | 6d8d2bbc830adfe13a15aa234f43953cbfdf0b80 (diff) | |
download | gcc-806bf4137dfb55d775e8e1b9040f69ac557a44ad.zip gcc-806bf4137dfb55d775e8e1b9040f69ac557a44ad.tar.gz gcc-806bf4137dfb55d775e8e1b9040f69ac557a44ad.tar.bz2 |
config.gcc (tm_file): Prefix pa/pa-700.h to tm_file list for PA1.0 architecture and pa/pa-7100.h for...
2002-05-30 John David Anglin <dave@hiauly1.hia.nrc.ca>
* config.gcc (tm_file): Prefix pa/pa-700.h to tm_file list for PA1.0
architecture and pa/pa-7100.h for PA1.1 architecture, respectively.
* pa/pa.c (override_options): Use TARGET_SCHED_DEFAULT to select
default scheduling model.
* pa/pa.h (TARGET_SCHED_DEFAULT): Define if not defined to "8000".
* pa/pa-700.h (TARGET_SCHED_DEFAULT): New file for "700" scheduling.
* pa/pa-7100.h (TARGET_SCHED_DEFAULT): New file for "7100" scheduling.
* doc/install.texi (hppa*-*-*): Document default scheduling.
From-SVN: r54085
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 8cd478f..f84a425 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -2805,6 +2805,14 @@ hppa*-*-* | parisc*-*-*) then target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY" fi + case $machine in + hppa1.0* | parisc1.0*) + tm_file="pa/pa-700.h ${tm_file}" + ;; + hppa1.1* | parisc1.1*) + tm_file="pa/pa-7100.h ${tm_file}" + ;; + esac ;; mips*-*-ecoff* | mips*-*-elf*) |