OSDN Git Service

PR target/48629
authorbernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 15 Apr 2011 23:32:55 +0000 (23:32 +0000)
committerbernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 15 Apr 2011 23:32:55 +0000 (23:32 +0000)
* haifa-sched.c (prune_ready_list, schedule_block): Use
sched_pressure_p rather than flag_sched_pressure.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172525 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/haifa-sched.c

index 80ee78d..99e1193 100644 (file)
@@ -1,3 +1,9 @@
+2011-04-16  Bernd Schmidt  <bernds@codesourcery.com>
+
+       PR target/48629
+       * haifa-sched.c (prune_ready_list, schedule_block): Use
+       sched_pressure_p rather than flag_sched_pressure.
+
 2011-04-15  Pat Haugen <pthaugen@us.ibm.com>
 
        * config/rs6000/rs6000.c (call_ABI_of_interest): Call
index 3b05f1b..e2d389b 100644 (file)
@@ -2898,7 +2898,7 @@ prune_ready_list (state_t temp_state, bool first_cycle_insn_p)
            cost = 1;
          reason = "asm";
        }
-      else if (flag_sched_pressure)
+      else if (sched_pressure_p)
        cost = 0;
       else
        {
@@ -3232,7 +3232,7 @@ schedule_block (basic_block *target_bb)
            {
              memcpy (temp_state, curr_state, dfa_state_size);
              cost = state_transition (curr_state, insn);
-             if (!flag_sched_pressure)
+             if (!sched_pressure_p)
                gcc_assert (cost < 0);
              if (memcmp (temp_state, curr_state, dfa_state_size) != 0)
                cycle_issued_insns++;