From: Alexandre Oliva Date: Sat, 19 Feb 2011 20:59:23 +0000 (+0000) Subject: re PR debug/47620 (Profiledbootstrap failure on powerpc-linux) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b2cddfc892d0a59afb01941407873271415e1d9d;p=gcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 92416b15665..f5885f8a9fb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2011-02-19 Alexandre Oliva + + PR debug/47620 + PR debug/47630 + * haifa-sched.c (fix_tick_ready): Skip tick computation + for debug insns. + 2011-02-19 Richard Guenther PR lto/47647 diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index 9f7d06af6d5..e16561f4cb9 100644 --- a/gcc/haifa-sched.c +++ b/gcc/haifa-sched.c @@ -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;