diff options
author | Steven Bosscher <stevenb@suse.de> | 2004-05-15 23:07:53 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2004-05-15 23:07:53 +0000 |
commit | 673fda6b48b3d89767d6fdded61dfe41541ab8e9 (patch) | |
tree | 5fdd2f53add78078e45a25262bd46f81d4cf8864 /gcc/tree-cfg.c | |
parent | fb0e7ec09f246a5211b3490753989a3e5e78c481 (diff) | |
download | gcc-673fda6b48b3d89767d6fdded61dfe41541ab8e9.zip gcc-673fda6b48b3d89767d6fdded61dfe41541ab8e9.tar.gz gcc-673fda6b48b3d89767d6fdded61dfe41541ab8e9.tar.bz2 |
c-gimplify.c (c_genericize): Replace calls via (*lang_hooks.foo) with lang_hooks.foo.
* c-gimplify.c (c_genericize):
Replace calls via (*lang_hooks.foo) with lang_hooks.foo.
* c-parse.in <expr_no_commas>: Likewise.
<if_prefix>: Likewise.
<select_or_iter_stmt>: Likewise.
* expr.c (expand_var, expand_expr_real_1): Likewise.
* expr.h (expand_expr): Make it a static inline function.
Move prototype for expand_expr_real up before this.
* fold-const.c (fold_relational_hi_lo, fold_relational_const):
Likewise.
* gimplify.c (gimple_boolify, gimplify_addr_expr,
gimplify_asm_expr, gimplify_expr): Likewise.
* tree-cfg.c (dump_tree_cfg, dump_cfg_stats, tree_cfg2vcg,
dump_function_to_file): Likewise.
* tree-dfa.c (dump_immediate_uses, dump_dfa_stats): Likewise.
* tree-inline.c (remap_block, save_body, walk_tree): Likewise.
* tree-into-ssa.c (dump_tree_ssa): Likewise.
* tree-mudflap.c (mf_varname_tree, mf_file_function_line_tree):
Likewise.
* tree-optimize.c (execute_one_pass): Likewise.
* tree-pretty-print.c (dump_generic_bb_buff): Likewise.
* tree-ssa-alias.c (dump_alias_stats, dump_alias_info): Likewise.
objc/
* objc-act.c (objc_build_try_enter_fragment,
objc_build_try_epilogue, objc_build_catch_stmt,
objc_build_finally_prologue): Replace calls via (*lang_hooks.foo)
with lang_hooks.foo ().
From-SVN: r81907
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 26954e4..9e468f4 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -2141,7 +2141,7 @@ dump_tree_cfg (FILE *file, int flags) if (flags & TDF_DETAILS) { const char *funcname - = (*lang_hooks.decl_printable_name) (current_function_decl, 2); + = lang_hooks.decl_printable_name (current_function_decl, 2); fputc ('\n', file); fprintf (file, ";; Function %s\n\n", funcname); @@ -2172,7 +2172,7 @@ dump_cfg_stats (FILE *file) const char * const fmt_str_1 = "%-30s%13lu%11lu%c\n"; const char * const fmt_str_3 = "%-43s%11lu%c\n"; const char *funcname - = (*lang_hooks.decl_printable_name) (current_function_decl, 2); + = lang_hooks.decl_printable_name (current_function_decl, 2); fprintf (file, "\nCFG Statistics for %s\n\n", funcname); @@ -2237,7 +2237,7 @@ tree_cfg2vcg (FILE *file) edge e; basic_block bb; const char *funcname - = (*lang_hooks.decl_printable_name) (current_function_decl, 2); + = lang_hooks.decl_printable_name (current_function_decl, 2); /* Write the file header. */ fprintf (file, "graph: { title: \"%s\"\n", funcname); @@ -4062,7 +4062,7 @@ dump_function_to_file (tree fn, FILE *file, int flags) basic_block bb; tree chain; - fprintf (file, "%s (", (*lang_hooks.decl_printable_name) (fn, 2)); + fprintf (file, "%s (", lang_hooks.decl_printable_name (fn, 2)); arg = DECL_ARGUMENTS (fn); while (arg) |