summaryrefslogtreecommitdiff
path: root/gcc/output.h
diff options
context:
space:
mode:
authordmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2014-08-22 16:50:40 +0000
committerdmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2014-08-22 16:50:40 +0000
commitdc1b321656a57fee23fd371a7bd8e9faa40dc8cd (patch)
tree114a414251d5d0923dff5f3df10c6b3cdfe2baf4 /gcc/output.h
parent3a2caf25eaecadc6eb64cd1787ef51081a15679b (diff)
downloadgcc-dc1b321656a57fee23fd371a7bd8e9faa40dc8cd.tar.gz
genpeep.c: peephole requires an rtx_insn
gcc/ * genpeep.c (main): Rename param back from "uncast_ins1" to "ins1", strengthening from rtx to rtx_insn *. Drop now-redundant checked cast. * output.h (peephole): Strengthen param from rtx to rtx_insn *. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214330 138bc75d-0d04-0410-961f-82ee72b054a4
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 e4799cfa6a1..0b637372b56 100644
--- a/gcc/output.h
+++ b/gcc/output.h
@@ -281,7 +281,7 @@ extern void assemble_addr_to_section (rtx, section *);
extern int get_pool_size (void);
#ifdef HAVE_peephole
-extern rtx_insn *peephole (rtx);
+extern rtx_insn *peephole (rtx_insn *);
#endif
extern void output_shared_constant_pool (void);