diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2016-10-11 18:30:45 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2016-10-11 18:30:45 +0200 |
commit | a32fc2165b93b4ff31fb35d17afd6701de35721e (patch) | |
tree | 19b10bcf8eed18910727210af7824f766fed214b /gcc/config.gcc | |
parent | 66d76fc91e78c98c75ad9ef7f11758fc68988172 (diff) | |
download | gcc-a32fc2165b93b4ff31fb35d17afd6701de35721e.zip gcc-a32fc2165b93b4ff31fb35d17afd6701de35721e.tar.gz gcc-a32fc2165b93b4ff31fb35d17afd6701de35721e.tar.bz2 |
alpha-passes.def: New file.
* config/alpha/alpha-passes.def: New file.
* config/alpha/t-alpha: New file.
* config/alpha/alpha-protos.h (gcc::context, rtl_opt_pass): Declare.
(make_pass_handle_trap_shadows): New prototype.
(make_pass_align_insns): Ditto.
* config/alpha/alpha.c (alpha_option_override): Don't register
passes here.
* config.gcc (alpha*-*-*) Add alpha/t-alpha to tmake_file.
From-SVN: r240996
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 7bbf546..2143d63 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -972,27 +972,30 @@ aarch64*-*-linux*) ;; alpha*-*-linux*) tm_file="elfos.h ${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h glibc-stdint.h" - tmake_file="${tmake_file} alpha/t-linux" + tmake_file="${tmake_file} alpha/t-linux alpha/t-alpha" extra_options="${extra_options} alpha/elf.opt" ;; alpha*-*-freebsd*) tm_file="elfos.h ${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h" + tmake_file="${tmake_file} alpha/t-alpha" extra_options="${extra_options} alpha/elf.opt" ;; alpha*-*-netbsd*) tm_file="elfos.h ${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h" + tmake_file="${tmake_file} alpha/t-alpha" extra_options="${extra_options} netbsd.opt netbsd-elf.opt \ alpha/elf.opt" ;; alpha*-*-openbsd*) tm_defines="${tm_defines} OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_FUNCTION_SIZE OBSD_HAS_DECLARE_OBJECT" tm_file="elfos.h alpha/alpha.h alpha/elf.h openbsd.h openbsd-stdint.h alpha/openbsd.h openbsd-libpthread.h" + tmake_file="${tmake_file} alpha/t-alpha" extra_options="${extra_options} openbsd.opt alpha/elf.opt" # default x-alpha is only appropriate for dec-osf. ;; alpha*-dec-*vms*) tm_file="${tm_file} vms/vms.h alpha/vms.h" - tmake_file="${tmake_file} alpha/t-vms" + tmake_file="${tmake_file} alpha/t-vms alpha/t-alpha" ;; arc*-*-elf*) extra_headers="arc-simd.h" |