diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 57a2854f2fb..e50e3732a0a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -12,6 +12,10 @@ (sparc_emit_probe_stack_range): Use ROUND_DOWN to calculate rounded_size. +2015-10-13 Nikolai Bozhenov + + * gcc/rtl.h (print_insn): Fix prototype. + 2015-10-13 Tom de Vries * tree-parloops.c (reduction_phi): Handle cases that gimple_uid is 0 or diff --git a/gcc/rtl.h b/gcc/rtl.h index a592a1e0388..d6edc719ac0 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -3574,7 +3574,7 @@ extern void dump_rtl_slim (FILE *, const rtx_insn *, const rtx_insn *, int, int); extern void print_value (pretty_printer *, const_rtx, int); extern void print_pattern (pretty_printer *, const_rtx, int); -extern void print_insn (pretty_printer *, const_rtx, int); +extern void print_insn (pretty_printer *, const rtx_insn *, int); extern void rtl_dump_bb_for_graph (pretty_printer *, basic_block); extern const char *str_pattern_slim (const_rtx);