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
This commit is contained in:
Alexandre Oliva 2011-02-19 20:59:23 +00:00 committed by Alexandre Oliva
parent 982d62f6ea
commit b2cddfc892
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
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

View File

@ -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;