This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Minor scheduler tidy-up
- From: law at redhat dot com
- To: gcc-patches at gcc dot gnu dot org
- Date: Wed, 29 May 2002 16:59:19 -0600
- Subject: Minor scheduler tidy-up
- Reply-to: law at redhat dot com
I missed this clearing of SCHED_GROUP_P yesterday. 3-staged on the PA.
* sched-deps.c (sched_analyze): Remove another useless clearing
of SCHED_GROUP_P I missed yesterday.
Index: sched-deps.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/sched-deps.c,v
retrieving revision 1.40
diff -c -3 -p -r1.40 sched-deps.c
*** sched-deps.c 29 May 2002 19:55:34 -0000 1.40
--- sched-deps.c 29 May 2002 22:54:48 -0000
*************** sched_analyze (deps, head, tail)
*** 1249,1257 ****
{
int i;
- /* Clear out stale SCHED_GROUP_P. */
- SCHED_GROUP_P (insn) = 0;
-
CANT_MOVE (insn) = 1;
/* Clear out the stale LOG_LINKS from flow. */
--- 1249,1254 ----