Commit b2cddfc8 by Alexandre Oliva Committed by Alexandre Oliva

re PR debug/47620 (Profiledbootstrap failure on powerpc-linux)

PR debug/47620
PR debug/47630
* haifa-sched.c (fix_tick_ready): Skip tick computation
for debug insns.

From-SVN: r170324
parent 982d62f6
2011-02-19 Alexandre Oliva <aoliva@redhat.com>
PR debug/47620
PR debug/47630
* haifa-sched.c (fix_tick_ready): Skip tick computation
for debug insns.
2011-02-19 Richard Guenther <rguenther@suse.de>
PR lto/47647
......
......@@ -3903,7 +3903,7 @@ fix_tick_ready (rtx next)
{
int tick, delay;
if (!sd_lists_empty_p (next, SD_LIST_RES_BACK))
if (!DEBUG_INSN_P (next) && !sd_lists_empty_p (next, SD_LIST_RES_BACK))
{
int full_p;
sd_iterator_def sd_it;
......
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