From: Kazu Hirata Date: Mon, 14 Mar 2005 02:53:59 +0000 (+0000) Subject: except.c (check_handled): Make it static. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c148389e285d2de5ca880f6677efd8a4e7a109bc;p=gcc.git except.c (check_handled): Make it static. * except.c (check_handled): Make it static. * except.h: Remove the corresponding prototype. From-SVN: r96408 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 70eb2243982..82ab701157b 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 20014b93c6e..d774bf3fa25 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 d79182f6463..3127d5de08a 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);