Jeff Sturm <jsturm@sigma6.com>

* except.c (expand_throw): Fix typo in _Jv_Sjlj_Throw.

From-SVN: r32521
This commit is contained in:
Jeff Sturm 2000-03-14 08:11:38 +00:00 committed by Richard Henderson
parent dde1da7265
commit d9420976f2
2 changed files with 5 additions and 1 deletions

View file

@ -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.

View file

@ -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);