diff options
author | Jan Hubicka <jh@suse.cz> | 2004-02-26 22:43:37 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2004-02-26 21:43:37 +0000 |
commit | 5bbeea44287b696a88f71d3ed97918ccdaa2e2db (patch) | |
tree | 534a37599db0bfd5c0ccf6afbf9f429e3a2ebc75 /gcc/config.gcc | |
parent | a749e46c012110579069947adb6fbfffb6c573fe (diff) | |
download | gcc-5bbeea44287b696a88f71d3ed97918ccdaa2e2db.zip gcc-5bbeea44287b696a88f71d3ed97918ccdaa2e2db.tar.gz gcc-5bbeea44287b696a88f71d3ed97918ccdaa2e2db.tar.bz2 |
config.gcc: Add support for nocoma/prescott/pentium-m/pentium3m /pentium4m.
* config.gcc: Add support for nocoma/prescott/pentium-m/pentium3m
/pentium4m.
* i386.c (override_options): Add support for new CPUs.
* i386.h (TARGET_CPU_DEFAULT_NAMES): New names.
(TARGET_CPU_DEFAULT_pentium_m, TARGET_CPU_DEFAULT_pentium4e): New
constants.
* invoke.texi: Extend documentation of -mtune/-march for new CPUs.
From-SVN: r78524
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 0608ae2..808fa0d 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -2139,12 +2139,21 @@ if test x$with_cpu = x ; then pentium2-*) with_cpu=pentium2 ;; - pentium3-*) + pentium3-*|pentium3m-*) with_cpu=pentium3 ;; - pentium4-*) + pentium4-*|pentium4m-*) with_cpu=pentium4 ;; + prescott-*) + with_cpu=prescott + ;; + nocona-*) + with_cpu=nocona + ;; + pentium_m-*) + with_cpu=pentium-m + ;; *) with_cpu=pentiumpro ;; @@ -2326,7 +2335,8 @@ fi | c3 | c3-2 | i686 | pentiumpro | pentium2 | pentium3 \ | pentium4 | k6 | k6-2 | k6-3 | athlon | athlon-tbird \ | athlon-4 | athlon-xp | athlon-mp | k8 | opteron \ - | athlon64 | athlon-fx) + | athlon64 | athlon-fx | prescott | pentium-m \ + | pentium4m | pentium3m| nocona) # OK ;; *) |