diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-14 08:11:38 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-14 08:11:38 +0000 |
commit | c7dfa70cdfc8a92c61245a42f25328a193037097 (patch) | |
tree | 62cb0071e941cf6804804becaa3570dcc461a874 | |
parent | 35c3924eba88028771fe43fcd96fc86ac980e2ea (diff) | |
download | gcc-c7dfa70cdfc8a92c61245a42f25328a193037097.tar.gz |
Jeff Sturm <jsturm@sigma6.com>
* except.c (expand_throw): Fix typo in _Jv_Sjlj_Throw.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32521 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/except.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 84282a8fcd5..dd73238960a 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2000-03-14 Jeff Sturm <jsturm@sigma6.com> + + * except.c (expand_throw): Fix typo in _Jv_Sjlj_Throw. + 2000-03-13 Jason Merrill <jason@casey.cygnus.com> * decl.c (grokfndecl): Set TREE_NOTHROW if TYPE_NOTHROW_P. diff --git a/gcc/cp/except.c b/gcc/cp/except.c index 7900e076253..12523dcc20b 100644 --- a/gcc/cp/except.c +++ b/gcc/cp/except.c @@ -857,7 +857,7 @@ expand_throw (exp) tree args = tree_cons (NULL_TREE, exp, NULL); fn = get_identifier (exceptions_via_longjmp - ? "_Jv_Sjlj_throw" + ? "_Jv_Sjlj_Throw" : "_Jv_Throw"); if (IDENTIFIER_GLOBAL_VALUE (fn)) fn = IDENTIFIER_GLOBAL_VALUE (fn); |