diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-07-20 21:07:50 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-07-20 21:07:50 -0400 |
commit | 74dad6cee46f115970139ff61e2efc86bc32b961 (patch) | |
tree | a4e6faca932b754b9680fee703b68fc3a2c98dbe | |
parent | 08fc0184893c2eb66a24b2e96a64cf09a9c2f8da (diff) | |
download | gcc-74dad6cee46f115970139ff61e2efc86bc32b961.zip gcc-74dad6cee46f115970139ff61e2efc86bc32b961.tar.gz gcc-74dad6cee46f115970139ff61e2efc86bc32b961.tar.bz2 |
(override_options): Set default for alpha_cpu from TARGET_CPU_DEFAULT.
From-SVN: r14508
-rw-r--r-- | gcc/config/alpha/alpha.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 25943ff..c918b5b 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -105,7 +105,8 @@ static void alpha_sa_mask PROTO((unsigned long *imaskP, void override_options () { - alpha_cpu = PROCESSOR_EV4; + alpha_cpu + = TARGET_CPU_DEFAULT & MASK_CPU_EV5 ? PROCESSOR_EV5 : PROCESSOR_EV4; if (alpha_cpu_string) { |