--- old/src/cpu/sparc/vm/stubGenerator_sparc.cpp 2015-12-01 16:57:14.097858805 +0100 +++ new/src/cpu/sparc/vm/stubGenerator_sparc.cpp 2015-12-01 16:57:13.924841462 +0100 @@ -5323,7 +5323,12 @@ #endif // COMPILER2 !=> _LP64 // Build this early so it's available for the interpreter. - StubRoutines::_throw_StackOverflowError_entry = generate_throw_exception("StackOverflowError throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_StackOverflowError)); + StubRoutines::_throw_StackOverflowError_entry = + generate_throw_exception("StackOverflowError throw_exception", + CAST_FROM_FN_PTR(address, SharedRuntime::throw_StackOverflowError)); + StubRoutines::_throw_delayed_StackOverflowError_entry = + generate_throw_exception("delayed StackOverflowError throw_exception", + CAST_FROM_FN_PTR(address, SharedRuntime::throw_delayed_StackOverflowError)); }