Commit 31815ed7 by Andreas Schwab Committed by Andreas Schwab

* config/ia64/ia64.c

(ia64_first_cycle_multipass_dfa_lookahead_guard): Check
pending_data_specs first.

From-SVN: r211127
parent 61dd7fbc
2014-06-02 Andreas Schwab <schwab@suse.de>
* config/ia64/ia64.c
(ia64_first_cycle_multipass_dfa_lookahead_guard): Check
pending_data_specs first.
2014-06-02 Richard Biener <rguenther@suse.de> 2014-06-02 Richard Biener <rguenther@suse.de>
PR tree-optimization/61378 PR tree-optimization/61378
......
...@@ -7536,7 +7536,7 @@ ia64_first_cycle_multipass_dfa_lookahead_guard (rtx insn, int ready_index) ...@@ -7536,7 +7536,7 @@ ia64_first_cycle_multipass_dfa_lookahead_guard (rtx insn, int ready_index)
/* Size of ALAT is 32. As far as we perform conservative /* Size of ALAT is 32. As far as we perform conservative
data speculation, we keep ALAT half-empty. */ data speculation, we keep ALAT half-empty. */
if ((TODO_SPEC (insn) & BEGIN_DATA) && pending_data_specs >= 16) if (pending_data_specs >= 16 && (TODO_SPEC (insn) & BEGIN_DATA))
return ready_index == 0 ? -1 : 1; return ready_index == 0 ? -1 : 1;
if (ready_index == 0) if (ready_index == 0)
......
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