OSDN Git Service

* gcc.c-torture/execute/strct-stdarg-1.x: New file. Expect
[pf3gnuchains/gcc-fork.git] / gcc / except.c
index c3958f9..6da82f7 100644 (file)
@@ -1,6 +1,6 @@
 /* Implements exception handling.
    Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
-   1999, 2000, 2001 Free Software Foundation, Inc.
+   1999, 2000, 2001, 2002 Free Software Foundation, Inc.
    Contributed by Mike Stump <mrs@cygnus.com>.
 
 This file is part of GCC.
@@ -776,7 +776,7 @@ expand_start_all_catch ()
 /* Begin a catch clause.  TYPE is the type caught, a list of such types, or
    null if this is a catch-all clause. Providing a type list enables to
    associate the catch region with potentially several exception types, which
-   is useful e.g. for Ada. */
+   is useful e.g. for Ada.  */
 
 void
 expand_start_catch (type_or_list)
@@ -2650,7 +2650,7 @@ reachable_next_level (region, type_thrown, info)
 
            if (type_thrown)
              {
-               /* If we have a at least one type match, end the search.  */
+               /* If we have at least one type match, end the search.  */
                tree tp_node = c->u.catch.type_list;
 
                for (; tp_node; tp_node = TREE_CHAIN (tp_node))