diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-07-26 18:00:03 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-07-26 18:00:03 +0000 |
commit | 60f77c863ef5ff29dbc432f18819284204b9d01c (patch) | |
tree | d6a6e25387e99cf52adac3f0b58eeae1c3f71f3c /gcc/eh-common.h | |
parent | 4ef402f75d590fcab4e62c77cba27e08121ae466 (diff) | |
download | gcc-60f77c863ef5ff29dbc432f18819284204b9d01c.tar.gz |
1999-07-26 Nathan Sidwell <nathan@acm.org>
* eh-common.h (__eh_matcher): Prototype correctly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28270 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/eh-common.h')
-rw-r--r-- | gcc/eh-common.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/eh-common.h b/gcc/eh-common.h index c0ff7e73b1a..2c2c09f8423 100644 --- a/gcc/eh-common.h +++ b/gcc/eh-common.h @@ -1,5 +1,5 @@ /* EH stuff - Copyright (C) 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of GNU CC. @@ -92,6 +92,7 @@ typedef struct exception_descriptor exception_table table[1]; } exception_descriptor; +struct __eh_info; /* forward declaration */ /* A pointer to a matching function is initialized at runtime by the specific language if run-time exceptions are supported. @@ -101,7 +102,7 @@ typedef struct exception_descriptor 3 - exception table region is in (exception descriptor *) */ -typedef void * (*__eh_matcher) PROTO ((void *, void *, void *)); +typedef void * (*__eh_matcher) PROTO ((struct __eh_info *, void *, struct exception_descriptor *)); /* This value is to be checked as a 'match all' case in the runtime field. */ |