mirror of git://gcc.gnu.org/git/gcc.git
du_chain.insn is an rtx_insn
gcc/ * regrename.h (struct du_chain): Strengthen field "insn" from rtx to rtx_insn *. From-SVN: r214483
This commit is contained in:
parent
b311fd0f70
commit
186294fae5
|
|
@ -1,3 +1,8 @@
|
||||||
|
2014-08-25 David Malcolm <dmalcolm@redhat.com>
|
||||||
|
|
||||||
|
* regrename.h (struct du_chain): Strengthen field "insn" from rtx
|
||||||
|
to rtx_insn *.
|
||||||
|
|
||||||
2014-08-25 David Malcolm <dmalcolm@redhat.com>
|
2014-08-25 David Malcolm <dmalcolm@redhat.com>
|
||||||
|
|
||||||
* sel-sched-ir.h (struct sel_region_bb_info_def): Strengthen field
|
* sel-sched-ir.h (struct sel_region_bb_info_def): Strengthen field
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ struct du_chain
|
||||||
struct du_chain *next_use;
|
struct du_chain *next_use;
|
||||||
|
|
||||||
/* The insn where the register appears. */
|
/* The insn where the register appears. */
|
||||||
rtx insn;
|
rtx_insn *insn;
|
||||||
/* The location inside the insn. */
|
/* The location inside the insn. */
|
||||||
rtx *loc;
|
rtx *loc;
|
||||||
/* The register class required by the insn at this location. */
|
/* The register class required by the insn at this location. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue