gcc/
* config/nds32/nds32-protos.h (nds32_adjust_insn_length):
Strengthen first param from rtx to rtx_insn *.
* config/nds32/nds32.c (nds32_adjust_insn_length): Likewise for
param "insn".
From-SVN: r214451
+2014-08-25 David Malcolm <dmalcolm@redhat.com>
+
+ * config/nds32/nds32-protos.h (nds32_adjust_insn_length):
+ Strengthen first param from rtx to rtx_insn *.
+ * config/nds32/nds32.c (nds32_adjust_insn_length): Likewise for
+ param "insn".
+
2014-08-25 David Malcolm <dmalcolm@redhat.com>
* config/mips/mips-protos.h (mips_emit_move): Strengthen return
/* Auxiliary function for 'Computing the Length of an Insn'. */
-extern int nds32_adjust_insn_length (rtx, int);
+extern int nds32_adjust_insn_length (rtx_insn *, int);
/* Auxiliary functions for FP_AS_GP detection. */
Modifies the length assigned to instruction INSN.
LEN is the initially computed length of the insn. */
int
-nds32_adjust_insn_length (rtx insn, int length)
+nds32_adjust_insn_length (rtx_insn *insn, int length)
{
rtx src, dst;