diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2010-02-22 13:44:24 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2010-02-22 05:44:24 -0800 |
commit | 5c91eb02f69fe62678a7bc771bff8fe84e389cd2 (patch) | |
tree | 7b2e8e2d3394844f4c60a8735406a585541de51e /gcc | |
parent | 69e3b47f921dda9f6f2035314a5b0c35ff026039 (diff) | |
download | gcc-5c91eb02f69fe62678a7bc771bff8fe84e389cd2.zip gcc-5c91eb02f69fe62678a7bc771bff8fe84e389cd2.tar.gz gcc-5c91eb02f69fe62678a7bc771bff8fe84e389cd2.tar.bz2 |
Turn on X86_TUNE_INTER_UNIT_MOVES for Atom.
2010-02-22 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.c (initial_ix86_tune_features): Turn on
X86_TUNE_INTER_UNIT_MOVES for m_ATOM.
From-SVN: r156957
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4907f63..995af39 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,7 +1,12 @@ +2010-02-22 H.J. Lu <hongjiu.lu@intel.com> + + * config/i386/i386.c (initial_ix86_tune_features): Turn on + X86_TUNE_INTER_UNIT_MOVES for m_ATOM. + 2010-02-22 Richard Guenther <rguenther@suse.de> * tree-vect-slp.c (vect_slp_analyze_bb): Fix typo. - + 2010-02-22 Hans-Peter Nilsson <hp@bitrange.com> Migrate crti, crtn, crtbegin, crtend build rules to libgcc. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index ac5ee3d..f87eefc 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -1456,7 +1456,7 @@ static unsigned int initial_ix86_tune_features[X86_TUNE_LAST] = { m_AMD_MULTIPLE, /* X86_TUNE_INTER_UNIT_MOVES */ - ~(m_AMD_MULTIPLE | m_ATOM | m_GENERIC), + ~(m_AMD_MULTIPLE | m_GENERIC), /* X86_TUNE_INTER_UNIT_CONVERSIONS */ ~(m_AMDFAM10), |