From: Martin Liska Date: Fri, 8 Jun 2018 13:44:06 +0000 (+0200) Subject: Fix function signature in header file. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=439608b783547ea4db52a64d35a859cbbe9f424f;p=gcc.git Fix function signature in header file. 2018-06-08 Martin Liska * tree-cfg.h (debug_function): Fix argument type to match implementation. From-SVN: r261327 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cee2f991e93..cbbf5e2bec3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2018-06-08 Martin Liska + + * tree-cfg.h (debug_function): Fix argument type to match + implementation. + 2018-06-08 Martin Liska * config/powerpcspe/powerpcspe.c (rs6000_xcoff_visibility): diff --git a/gcc/tree-cfg.h b/gcc/tree-cfg.h index 73237a604be..9491bb45feb 100644 --- a/gcc/tree-cfg.h +++ b/gcc/tree-cfg.h @@ -81,7 +81,7 @@ extern void fold_loop_internal_call (gimple *, tree); extern basic_block move_sese_region_to_fn (struct function *, basic_block, basic_block, tree); extern void dump_function_to_file (tree, FILE *, dump_flags_t); -extern void debug_function (tree, int) ; +extern void debug_function (tree, dump_flags_t); extern void print_loops_bb (FILE *, basic_block, int, int); extern void print_loops (FILE *, int); extern void debug (struct loop &ref);