* except.c (check_handled): Make it static.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 14 Mar 2005 02:53:59 +0000 (02:53 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 14 Mar 2005 02:53:59 +0000 (02:53 +0000)
* 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
gcc/except.c
gcc/except.h

index 70eb224..82ab701 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-14  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * except.c (check_handled): Make it static.
+       * except.h: Remove the corresponding prototype.
+
 2005-03-14  Alan Modra  <amodra@bigpond.net.au>
 
        * config.gcc: Remove excess indentation.
index 20014b9..d774bf3 100644 (file)
@@ -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;
index d79182f..3127d5d 100644 (file)
@@ -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);