diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-27 08:56:10 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-27 08:56:10 +0000 |
commit | 7496b60933cbb86c3bb26e4f17bc3d1861492c47 (patch) | |
tree | d88296687152c052613fb9f98ba68e3a92712929 /gcc/tree-ssa-live.c | |
parent | 8c5b0c2b1bd816d3629294eacf1b6e624988e1ac (diff) | |
download | gcc-7496b60933cbb86c3bb26e4f17bc3d1861492c47.tar.gz |
2009-08-27 Richard Guenther <rguenther@suse.de>
* gengtype.c (main): Handle uint64_t.
* ipa-utils.c (get_base_var): Indent properly.
* tree-ssa-live.c (debug_scope_block): New function.
* tree-flow.h (debug_scope_block): Declare.
* tree-ssa-copy.c (replace_exp_1): Add vertical space.
* basic-block.h (enum profile_status): Rename to
enum profile_status_d.
(x_profile_status): Adjust type.
cp/
* class.c (build_vtbl_ref_1): Remove excess vertical space.
* Make-lang.in (CXX_TREE_H): Remove c-common.def dependency
tracked by $(TREE_H).
* semantics.c (expand_or_defer_fn): Zero DECL_SAVED_TREE.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151139 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-live.c')
-rw-r--r-- | gcc/tree-ssa-live.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/tree-ssa-live.c b/gcc/tree-ssa-live.c index d4166944e97..6de001c8ac3 100644 --- a/gcc/tree-ssa-live.c +++ b/gcc/tree-ssa-live.c @@ -637,6 +637,15 @@ dump_scope_block (FILE *file, int indent, tree scope, int flags) fprintf (file, "\n%*s}\n",indent, ""); } +/* Dump the tree of lexical scopes starting at SCOPE to stderr. FLAGS + is as in print_generic_expr. */ + +void +debug_scope_block (tree scope, int flags) +{ + dump_scope_block (stderr, 0, scope, flags); +} + /* Dump the tree of lexical scopes of current_function_decl to FILE. FLAGS is as in print_generic_expr. */ |