diff options
author | Jeff Sturm <jsturm@sigma6.com> | 2000-03-14 08:11:38 +0000 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-03-14 00:11:38 -0800 |
commit | d9420976f2ab42d24519b10b2ae8671b9aa9661b (patch) | |
tree | 62cb0071e941cf6804804becaa3570dcc461a874 | |
parent | dde1da7265dd4e09df0b6d426f8297d19b890cb3 (diff) | |
download | gcc-d9420976f2ab42d24519b10b2ae8671b9aa9661b.zip gcc-d9420976f2ab42d24519b10b2ae8671b9aa9661b.tar.gz gcc-d9420976f2ab42d24519b10b2ae8671b9aa9661b.tar.bz2 |
Jeff Sturm <jsturm@sigma6.com>
* except.c (expand_throw): Fix typo in _Jv_Sjlj_Throw.
From-SVN: r32521
-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 84282a8..dd73238 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 7900e07..12523dcc 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); |