From a81cad995911db68ccf3e4234328774dbc090155 Mon Sep 17 00:00:00 2001 From: kazu Date: Mon, 14 Mar 2005 02:53:59 +0000 Subject: [PATCH] * except.c (check_handled): Make it static. * except.h: Remove the corresponding prototype. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96408 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/except.c | 2 +- gcc/except.h | 1 - 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 70eb2243982d..82ab701157be 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-03-14 Kazu Hirata + + * except.c (check_handled): Make it static. + * except.h: Remove the corresponding prototype. + 2005-03-14 Alan Modra * config.gcc: Remove excess indentation. diff --git a/gcc/except.c b/gcc/except.c index 20014b93c6e3..d774bf3fa259 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -2082,7 +2082,7 @@ struct reachable_info /* A subroutine of reachable_next_level. Return true if TYPE, or a base class of TYPE, is in HANDLED. */ -int +static int check_handled (tree handled, tree type) { tree t; diff --git a/gcc/except.h b/gcc/except.h index d79182f6463b..3127d5de08ae 100644 --- a/gcc/except.h +++ b/gcc/except.h @@ -81,7 +81,6 @@ extern void expand_eh_return (void); extern rtx expand_builtin_extend_pointer (tree); extern rtx get_exception_pointer (struct function *); extern rtx get_exception_filter (struct function *); -extern int check_handled (tree, tree); extern void sjlj_emit_function_exit_after (rtx); -- 2.47.3