diff options
author | Daniel Berlin <dberlin@dberlin.org> | 2005-01-04 01:54:26 +0000 |
---|---|---|
committer | Daniel Berlin <dberlin@gcc.gnu.org> | 2005-01-04 01:54:26 +0000 |
commit | 1eb3331e96ce4c7652004ef02da7ca9e72539555 (patch) | |
tree | 416968ea26b7983325a0c2ff0b9e690796ea0157 /gcc/tree-pass.h | |
parent | 35a91d76115048150dd7700a9606756dec2d8d42 (diff) | |
download | gcc-1eb3331e96ce4c7652004ef02da7ca9e72539555.zip gcc-1eb3331e96ce4c7652004ef02da7ca9e72539555.tar.gz gcc-1eb3331e96ce4c7652004ef02da7ca9e72539555.tar.bz2 |
Fix PR debug/17924 Fix PR debug/19191
2005-01-03 Daniel Berlin <dberlin@dberlin.org>
Fix PR debug/17924
Fix PR debug/19191
* dwarf2out.c (block_ultimate_origin): Follow decl origin if origin
is a decl.
* gimple-low.c (mark_blocks_with_used_vars): New function.
(mark_blocks_with_used_subblocks): Ditto.
(mark_used_blocks): Ditto.
(pass_mark_used_blocks): New pass.
* tree-inline.c: Include debug.h.
(expand_call_inline): Call outlining_inline_function here.
* tree-optimize.c (init_tree_optimization_passes): Add
pass_mark_used_blocks.
* tree-pass.h (pass_mark_used_blocks): New.
* Makefile.in (tree-inline.o): Add debug.h dependency.
From-SVN: r92882
Diffstat (limited to 'gcc/tree-pass.h')
-rw-r--r-- | gcc/tree-pass.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index f927047..4468fe5 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -158,6 +158,7 @@ extern struct tree_opt_pass pass_redundant_phi; extern struct tree_opt_pass pass_dse; extern struct tree_opt_pass pass_nrv; extern struct tree_opt_pass pass_remove_useless_vars; +extern struct tree_opt_pass pass_mark_used_blocks; extern struct tree_opt_pass pass_rename_ssa_copies; extern struct tree_opt_pass pass_expand; extern struct tree_opt_pass pass_rest_of_compilation; |