Skip to content

Commit

Permalink
better error notification
Browse files Browse the repository at this point in the history
  • Loading branch information
adinn committed Nov 19, 2024
1 parent d596ed2 commit 735333c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/runtime/stubCodeGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ void StubCodeGenerator::stub_epilog(StubCodeDesc* cdesc) {

#ifndef PRODUCT
void StubCodeGenerator::verify_stub(StubGenStubId stub_id) {
assert(StubRoutines::stub_to_blob(stub_id) == blob_id(), "wrong blob being used to generate stub");
assert(StubRoutines::stub_to_blob(stub_id) == blob_id(), "wrong blob %s for generation of stub %s", StubRoutines::get_blob_name(blob_id()), StubRoutines::get_stub_name(stub_id));
}
#endif

Expand Down

0 comments on commit 735333c

Please sign in to comment.