diff --git a/src/hotspot/share/code/aotCodeCache.hpp b/src/hotspot/share/code/aotCodeCache.hpp index 77fb90b955b..66ffb09c54e 100644 --- a/src/hotspot/share/code/aotCodeCache.hpp +++ b/src/hotspot/share/code/aotCodeCache.hpp @@ -266,9 +266,9 @@ public: address load_archive_data(StubId stub_id, address &end, GrowableArray
* entries = nullptr, GrowableArray* extras = nullptr) NOT_CDS_RETURN_(nullptr); void store_archive_data(StubId stub_id, address start, address end, GrowableArray* entries = nullptr, GrowableArray* extras = nullptr) NOT_CDS_RETURN; - void stub_epilog(StubId stub_id); + void stub_epilog(StubId stub_id) NOT_CDS_RETURN; #ifdef ASSERT - void check_stored(StubId stub_id); + void check_stored(StubId stub_id) NOT_CDS_RETURN; #endif const AOTStubData* as_const() { return (const AOTStubData*)this; } };