Commit 7ab5df48 by Andrey Belevantsev

Fixed typo in date of the 2008-09-01 MOVE_RATIO commit.

2008-09-02  Alexander Monakov  <amonakov@ispras.ru>

        Fixed typo in date of the 2008-09-01 MOVE_RATIO commit.

        * config/ia64/ia64.opt (msched-ar-data-spec): Default to 1.
        * config/ia64/ia64.c (ia64_set_sched_flags): Always initialize
        spec_info->mask.

From-SVN: r139889
parent f6d5e84a
2008-09-02 Alexander Monakov <amonakov@ispras.ru>
Fixed typo in date of the 2008-09-01 MOVE_RATIO commit.
* config/ia64/ia64.opt (msched-ar-data-spec): Default to 1.
* config/ia64/ia64.c (ia64_set_sched_flags): Always initialize
spec_info->mask.
2008-09-02 Victor Kaplansky <victork@il.ibm.com> 2008-09-02 Victor Kaplansky <victork@il.ibm.com>
* gcc/config/spu/spu.md (divdf3): Removed. * gcc/config/spu/spu.md (divdf3): Removed.
...@@ -123,7 +131,7 @@ ...@@ -123,7 +131,7 @@
* config/arm/arm.c (arm_no_early_mul_dep): Handle multiply-subtract. * config/arm/arm.c (arm_no_early_mul_dep): Handle multiply-subtract.
2008-00-01 Jan Hubicka <jh@suse.cz> 2008-09-01 Jan Hubicka <jh@suse.cz>
* config/spu/spu.c (spu_expand_block_move) Update call of MOVE_RATIO. * config/spu/spu.c (spu_expand_block_move) Update call of MOVE_RATIO.
......
...@@ -6853,6 +6853,8 @@ ia64_set_sched_flags (spec_info_t spec_info) ...@@ -6853,6 +6853,8 @@ ia64_set_sched_flags (spec_info_t spec_info)
mask |= BE_IN_CONTROL; mask |= BE_IN_CONTROL;
} }
spec_info->mask = mask;
if (mask) if (mask)
{ {
*flags |= USE_DEPS_LIST | DO_SPECULATION; *flags |= USE_DEPS_LIST | DO_SPECULATION;
...@@ -6860,7 +6862,6 @@ ia64_set_sched_flags (spec_info_t spec_info) ...@@ -6860,7 +6862,6 @@ ia64_set_sched_flags (spec_info_t spec_info)
if (mask & BE_IN_SPEC) if (mask & BE_IN_SPEC)
*flags |= NEW_BBS; *flags |= NEW_BBS;
spec_info->mask = mask;
spec_info->flags = 0; spec_info->flags = 0;
if ((mask & DATA_SPEC) && mflag_sched_prefer_non_data_spec_insns) if ((mask & DATA_SPEC) && mflag_sched_prefer_non_data_spec_insns)
......
...@@ -101,7 +101,7 @@ Target Report Var(mflag_sched_br_data_spec) Init(0) ...@@ -101,7 +101,7 @@ Target Report Var(mflag_sched_br_data_spec) Init(0)
Use data speculation before reload Use data speculation before reload
msched-ar-data-spec msched-ar-data-spec
Target Report Var(mflag_sched_ar_data_spec) Init(0) Target Report Var(mflag_sched_ar_data_spec) Init(1)
Use data speculation after reload Use data speculation after reload
msched-control-spec msched-control-spec
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment