diff options
author | Bernd Schmidt <bernds@codesourcery.com> | 2010-11-02 12:40:42 +0000 |
---|---|---|
committer | Maxim Kuvyrkov <mkuvyrkov@gcc.gnu.org> | 2010-11-02 12:40:42 +0000 |
commit | 9d8477b66b410f3b38cb09317794cb7e8dee9489 (patch) | |
tree | cb69918656edb5d467a4ac4968a628bad4dffd8e | |
parent | b2b015430788921873b1937a1420f6245e87ccbc (diff) | |
download | gcc-9d8477b66b410f3b38cb09317794cb7e8dee9489.zip gcc-9d8477b66b410f3b38cb09317794cb7e8dee9489.tar.gz gcc-9d8477b66b410f3b38cb09317794cb7e8dee9489.tar.bz2 |
i386.c (cpu_names): Add "corei7".
* config/i386/i386.c (cpu_names): Add "corei7".
* config/i386/i386.h (enum target_cpu_default): Add entry for Core i7.
Co-Authored-By: Maxim Kuvyrkov <maxim@codesourcery.com>
From-SVN: r166178
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 1 | ||||
-rw-r--r-- | gcc/config/i386/i386.h | 1 |
3 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 83aa176..18df572 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,12 @@ 2010-11-02 Bernd Schmidt <bernds@codesourcery.com> Maxim Kuvyrkov <maxim@codesourcery.com> + * config/i386/i386.c (cpu_names): Add "corei7". + * config/i386/i386.h (enum target_cpu_default): Add entry for Core i7. + +2010-11-02 Bernd Schmidt <bernds@codesourcery.com> + Maxim Kuvyrkov <maxim@codesourcery.com> + Tune alignment for Intel Core i7 * config/i386.h (TARGET_COREI7{_32,_64,}): New macros. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 84317e0..e38f2cc 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -2489,6 +2489,7 @@ static const char *const cpu_names[TARGET_CPU_DEFAULT_max] = "prescott", "nocona", "core2", + "corei7", "atom", "geode", "k6", diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index 1a2c3f3..89ee0fa 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -585,6 +585,7 @@ enum target_cpu_default TARGET_CPU_DEFAULT_prescott, TARGET_CPU_DEFAULT_nocona, TARGET_CPU_DEFAULT_core2, + TARGET_CPU_DEFAULT_corei7, TARGET_CPU_DEFAULT_atom, TARGET_CPU_DEFAULT_geode, |