gcc/ChangeLog:
2015-05-08 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* mode-switching.c (commit_mode_sets): Change type of local
variable from rtx to rtx_insn *.
From-SVN: r222935
+2015-05-08 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
+
+ * mode-switching.c (commit_mode_sets): Change type of local
+ variable from rtx to rtx_insn *.
+
2015-05-08 Jim Wilson <jim.wilson@linaro.org>
* doc/install.texi (--enable-languages): Add missing jit and lto info.
HARD_REG_SET live_at_edge;
basic_block src_bb = eg->src;
int cur_mode = info[src_bb->index].mode_out;
- rtx mode_set;
+ rtx_insn *mode_set;
REG_SET_TO_HARD_REG_SET (live_at_edge, df_get_live_out (src_bb));
default_rtl_profile ();
/* Do not bother to insert empty sequence. */
- if (mode_set == NULL_RTX)
+ if (mode_set == NULL)
continue;
/* We should not get an abnormal edge here. */