aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cp/ChangeLog4
-rw-r--r--gcc/cp/except.c2
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..12523dc 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);