diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2016-02-06 05:40:21 -0200 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2016-02-06 05:47:17 -0200 |
commit | d3b82ee3730b2ccb5da81fdcc27180959b096c52 (patch) | |
tree | db330a9faf7d872c6b7c5f3a73d4aa93dac8979b /gcc/gimple-predict.h | |
parent | 4e03fd0d699b62d6a852b19e5e55b254d1159a43 (diff) | |
download | gcc-d3b82ee3730b2ccb5da81fdcc27180959b096c52.tar.gz |
[PR69634] fix debug_insn-inconsistent REG_N_CALLS_CROSSEDaoliva/pr69634
The testcase has a debug insn referencing a pseudo right before an
insn that modifies the pseudo.
Without debug insns, REG_N_CALLS_CROSSED was zero for that pseudo, so
sched_analyze_reg added a dep between the pseudo setter and an earlier
(lib)call.
With debug insns, we miscomputed REG_N_CALLS_CROSSED as nonzero
because of the debug insn, and then no dep was added between the two
insns. This was enough to change sched1's decisions about where to
place the pseudo setter.
REG_N_CALLS_CROSSED is computed by both regstat_bb_compute_ri and
regstat_bb_compute_calls_crossed, but although the former skipped
debug insns, the latter didn't.
Fixing this inconsistency was enough to fix the -fcompare-debug error.
for gcc/ChangeLog
PR target/69634
* regstat.c (regstat_bb_compute_calls_crossed): Disregard
debug insns.
for gcc/testsuite/ChangeLog
PR target/69634
* gcc.dg/pr69634.c: New.
Diffstat (limited to 'gcc/gimple-predict.h')
0 files changed, 0 insertions, 0 deletions