summaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorNikolai Bozhenov <n.bozhenov@samsung.com>2015-10-13 15:32:32 +0000
committerJeff Law <law@gcc.gnu.org>2015-10-13 09:32:32 -0600
commit7802cb1eef7723398e88c20732eb140bdae4b434 (patch)
treef461f3ef798c6eca2b03fd8e1eb2640365418ca8 /gcc/rtl.h
parent58611c4f1fe9f0bbea7e5164cc420399f93d508d (diff)
downloadgcc-7802cb1eef7723398e88c20732eb140bdae4b434.tar.gz
Fix prototype for print_insn in rtl.h
* gcc/rtl.h (print_insn): Fix prototype. From-SVN: r228770
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r--gcc/rtl.h2
1 files changed, 1 insertions, 1 deletions
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);