diff options
author | David Malcolm <dmalcolm@redhat.com> | 2014-08-25 20:49:19 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2014-08-25 20:49:19 +0000 |
commit | 0043f37de51b72ee20d630192ab81e650862f58d (patch) | |
tree | b15485ccc596a4f1a6bc5873a977422f466c63ae /gcc/sched-int.h | |
parent | 95c43227c5170be95578e3209419c06b41d17fb4 (diff) | |
download | gcc-0043f37de51b72ee20d630192ab81e650862f58d.zip gcc-0043f37de51b72ee20d630192ab81e650862f58d.tar.gz gcc-0043f37de51b72ee20d630192ab81e650862f58d.tar.bz2 |
struct haifa_sched_info: prev_head and next_tail
gcc/
* sched-int.h (struct haifa_sched_info): Strengthen fields
"prev_head" and "next_tail" from rtx to rtx_insn *.
From-SVN: r214477
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r-- | gcc/sched-int.h | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |