aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@acm.org>1999-07-26 18:00:03 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1999-07-26 18:00:03 +0000
commit1652ca3e7f2a73af989d8fcffc1eb796170812c8 (patch)
treed6a6e25387e99cf52adac3f0b58eeae1c3f71f3c /gcc
parent652374d3387f07d154342f4c3f49265b48df5520 (diff)
downloadgcc-1652ca3e7f2a73af989d8fcffc1eb796170812c8.zip
gcc-1652ca3e7f2a73af989d8fcffc1eb796170812c8.tar.gz
gcc-1652ca3e7f2a73af989d8fcffc1eb796170812c8.tar.bz2
eh-common.h (__eh_matcher): Prototype correctly.
1999-07-26 Nathan Sidwell <nathan@acm.org> * eh-common.h (__eh_matcher): Prototype correctly. From-SVN: r28270
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/eh-common.h5
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 76e8aee..846e3df 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+1999-07-26 Nathan Sidwell <nathan@acm.org>
+
+ * eh-common.h (__eh_matcher): Prototype correctly.
+
Mon Jul 26 17:24:51 1999 Philip Blundell <pb@nexus.co.uk>
* config/arm/thumb.h (THUMB_FLAG_SINGLE_PIC_BASE): Define.
diff --git a/gcc/eh-common.h b/gcc/eh-common.h
index c0ff7e7..2c2c09f 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. */