diff options
author | Jason Merrill <jason@redhat.com> | 2010-05-14 14:55:10 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2010-05-14 14:55:10 -0400 |
commit | 786f715dc6869bac7a3018e880a4ffde41940422 (patch) | |
tree | f181defcfc86100bea4bb762184c7584637432cc /gcc/gimplify.c | |
parent | 19fb0b860f5b70c3fa0bbf7ef02afd7b95634231 (diff) | |
download | gcc-786f715dc6869bac7a3018e880a4ffde41940422.zip gcc-786f715dc6869bac7a3018e880a4ffde41940422.tar.gz gcc-786f715dc6869bac7a3018e880a4ffde41940422.tar.bz2 |
re PR c++/44127 (G++ emits unnecessary EH code)
PR c++/44127
gcc:
* gimplify.c (gimplify_seq_add_stmt): No longer static.
* gimple.h: Declare it.
* gimple.c (gimple_build_eh_filter): No ops.
gcc/cp:
* cp-gimplify.c (gimplify_must_not_throw_expr): Use
gimple_build_eh_must_not_throw.
From-SVN: r159407
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r-- | gcc/gimplify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c index c741891..6d00fef 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -158,7 +158,7 @@ gimple_tree_eq (const void *p1, const void *p2) During gimplification, we need to manipulate statement sequences before the def/use vectors have been constructed. */ -static void +void gimplify_seq_add_stmt (gimple_seq *seq_p, gimple gs) { gimple_stmt_iterator si; |