diff options
author | Nick Clifton <nickc@gcc.gnu.org> | 2011-06-16 10:21:05 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2011-06-16 10:21:05 +0000 |
commit | fd4df33d4ee706a8dbc98201b1a62456fabb8195 (patch) | |
tree | 8871792009351efa8d3e00062233ae8c8904d006 /gcc/config.gcc | |
parent | fbd05da019f5006cc9ca83633f69d1d28c82f14b (diff) | |
download | gcc-fd4df33d4ee706a8dbc98201b1a62456fabb8195.zip gcc-fd4df33d4ee706a8dbc98201b1a62456fabb8195.tar.gz gcc-fd4df33d4ee706a8dbc98201b1a62456fabb8195.tar.bz2 |
re PR target/49427 (v850e-elf wants 850e/v850e-common.c)
PR target/49427
* config.gcc: Set cpu_type to v850 for any V850 architecture.
(v850*-*-*): Delete explicit setting of tm_p_file, tmake_file,
md_file, extra_modes, out_file and extra_options are these are all
deduced from cpu_type.
From-SVN: r175100
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 2a67bc4..2cf92d2 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -430,6 +430,9 @@ sh[123456789lbe]*-*-* | sh-*-*) cpu_type=sh need_64bit_hwint=yes ;; +v850*-*-*) + cpu_type=v850 + ;; xtensa*-*-*) extra_options="${extra_options} fused-madd.opt" ;; @@ -2588,12 +2591,6 @@ v850*-*-*) ;; esac tm_file="dbxelf.h elfos.h newlib-stdint.h v850/v850.h" - tm_p_file=v850/v850-protos.h - tmake_file=v850/t-v850 - md_file=v850/v850.md - extra_modes=v850/v850-modes.def - out_file=v850/v850.c - extra_options="v850/v850.opt" if test x$stabs = xyes then tm_file="${tm_file} dbx.h" |