diff options
author | Sergey Ostanevich <sergos.gnu@gmail.com> | 2011-10-20 19:29:52 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2011-10-20 12:29:52 -0700 |
commit | 74acb076e9e2bb62d5aba3b1ad21307e385c0392 (patch) | |
tree | 46da85b29ea58b8d2057657a66b418fd9d4c0521 | |
parent | 76187e874a402294a0d34fc982da0b279f1ad2a9 (diff) | |
download | gcc-74acb076e9e2bb62d5aba3b1ad21307e385c0392.zip gcc-74acb076e9e2bb62d5aba3b1ad21307e385c0392.tar.gz gcc-74acb076e9e2bb62d5aba3b1ad21307e385c0392.tar.bz2 |
Change Atom align_loops_max_skip to 15.
2011-10-20 Sergey Ostanevich <sergos.gnu@gmail.com>
PR target/50572
* config/i386/i386.c (processor_target_table): Change Atom
align_loops_max_skip to 15.
From-SVN: r180268
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f4e16e1..cacb123 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2011-10-20 Sergey Ostanevich <sergos.gnu@gmail.com> + + PR target/50572 + * config/i386/i386.c (processor_target_table): Change Atom + align_loops_max_skip to 15. + 2011-10-20 Richard Henderson <rth@redhat.com> * target.def (builtin_vec_perm): Remove. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 7750356..a6cb7a3 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -2595,7 +2595,7 @@ static const struct ptt processor_target_table[PROCESSOR_max] = {&bdver1_cost, 32, 24, 32, 7, 32}, {&bdver2_cost, 32, 24, 32, 7, 32}, {&btver1_cost, 32, 24, 32, 7, 32}, - {&atom_cost, 16, 7, 16, 7, 16} + {&atom_cost, 16, 15, 16, 7, 16} }; static const char *const cpu_names[TARGET_CPU_DEFAULT_max] = |