From fca96842b4d2d5361d11b6531336749531b16445 Mon Sep 17 00:00:00 2001 From: Bernd Schmidt Date: Tue, 5 Apr 2011 22:19:17 +0000 Subject: re PR bootstrap/48403 (bootstrap comparison failure) PR bootstrap/48403 * haifa-sched.c (schedule_block): Increment cycle_issued_insns only if old and new states differ. From-SVN: r172006 --- gcc/haifa-sched.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gcc/haifa-sched.c') diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index 8f2e4ad..30f55be 100644 --- a/gcc/haifa-sched.c +++ b/gcc/haifa-sched.c @@ -3230,10 +3230,12 @@ schedule_block (basic_block *target_bb) if (recog_memoized (insn) >= 0) { + memcpy (temp_state, curr_state, dfa_state_size); cost = state_transition (curr_state, insn); if (!flag_sched_pressure) gcc_assert (cost < 0); - cycle_issued_insns++; + if (memcmp (temp_state, curr_state, dfa_state_size) != 0) + cycle_issued_insns++; asm_p = false; } else -- cgit v1.1