This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH 165/236] struct haifa_sched_info: prev_head and next_tail
- From: David Malcolm <dmalcolm at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Cc: David Malcolm <dmalcolm at redhat dot com>
- Date: Wed, 6 Aug 2014 13:22:24 -0400
- Subject: [PATCH 165/236] struct haifa_sched_info: prev_head and next_tail
- Authentication-results: sourceware.org; auth=none
- References: <1407345815-14551-1-git-send-email-dmalcolm at redhat dot com>
gcc/
* sched-int.h (struct haifa_sched_info): Strengthen fields
"prev_head" and "next_tail" from rtx to rtx_insn *.
---
gcc/sched-int.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gcc/sched-int.h b/gcc/sched-int.h
index ae048c1..220e26d 100644
--- a/gcc/sched-int.h
+++ b/gcc/sched-int.h
@@ -607,7 +607,7 @@ struct haifa_sched_info
bool (*insn_finishes_block_p) (rtx);
/* The boundaries of the set of insns to be scheduled. */
- rtx prev_head, next_tail;
+ rtx_insn *prev_head, *next_tail;
/* Filled in after the schedule is finished; the first and last scheduled
insns. */
--
1.8.5.3