aboutsummaryrefslogtreecommitdiff
path: root/gcc/output.h
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2014-09-05 14:04:46 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2014-09-05 14:04:46 +0000
commit7fa55ff675da902516b0e0624e8436b823122963 (patch)
treef511f0ad87a62f6b42667d2184981b61488818e9 /gcc/output.h
parent75677a6759750582b0aa92b3409d0061b4f66739 (diff)
downloadgcc-7fa55ff675da902516b0e0624e8436b823122963.zip
gcc-7fa55ff675da902516b0e0624e8436b823122963.tar.gz
gcc-7fa55ff675da902516b0e0624e8436b823122963.tar.bz2
Drop uncast_insn from param 1 of final_scan_insn
gcc/ChangeLog 2014-09-05 David Malcolm <dmalcolm@redhat.com> * output.h (final_scan_insn): Strengthen first param from rtx to rtx_insn *. * final.c (final_scan_insn): Likewise, renaming it back from "uncast_insn" to "insn", eliminating the checked cast. * config/h8300/h8300.md (define_insn "jump"): Replace local rtx "vec" with an rtx_sequence * "seq", taking a copy of "final_sequence", and using methods of "seq" for clarity, and for type-safety in the calls to final_scan_insn. * config/mips/mips.c (mips_output_conditional_branch): Use methods of "final_sequence" for clarity, and for type-safety in the call to final_scan_insn. * config/sh/sh.c (print_slot): Strengthen param from rtx to rtx_sequence * and rename from "insn" to "seq". From-SVN: r214961
Diffstat (limited to 'gcc/output.h')
-rw-r--r--gcc/output.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/output.h b/gcc/output.h
index a2ac1ec..fd36f8b 100644
--- a/gcc/output.h
+++ b/gcc/output.h
@@ -72,7 +72,7 @@ extern void final (rtx_insn *, FILE *, int);
/* The final scan for one insn, INSN. Args are same as in `final', except
that INSN is the insn being scanned. Value returned is the next insn to
be scanned. */
-extern rtx_insn *final_scan_insn (rtx, FILE *, int, int, int *);
+extern rtx_insn *final_scan_insn (rtx_insn *, FILE *, int, int, int *);
/* Replace a SUBREG with a REG or a MEM, based on the thing it is a
subreg of. */