diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-31 22:01:38 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-31 22:01:38 +0000 |
commit | 4437c3fec1773050625ad42cb5fefb5350f355ed (patch) | |
tree | 5f90478fcda78e3b4eeae78c8fb673395269e315 /gcc/diagnostic.h | |
parent | 4f5ea781e86ee047d68d957c8c30120d18be2fcb (diff) | |
download | gcc-4437c3fec1773050625ad42cb5fefb5350f355ed.tar.gz |
* tree-pretty-print.c (print_call_name): Take the callee, not the
call itself. Make non-static. Use dump_function_name for
functions.
(dump_generic_node): Adjust.
* diagnostic.h: Declare print_call_name.
* gimple-pretty-print.c (dump_gimple_call): Use it.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@148019 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/diagnostic.h')
-rw-r--r-- | gcc/diagnostic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/diagnostic.h b/gcc/diagnostic.h index 998c11ec1f6..aa9aaf8a9c2 100644 --- a/gcc/diagnostic.h +++ b/gcc/diagnostic.h @@ -226,6 +226,7 @@ extern void print_generic_expr (FILE *, tree, int); extern void print_generic_decl (FILE *, tree, int); extern void debug_c_tree (tree); extern void dump_omp_clauses (pretty_printer *, tree, int, int); +extern void print_call_name (pretty_printer *, tree); /* In gimple-pretty-print.c */ extern void debug_generic_expr (tree); |