We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 49dca2f + 59dc849 commit 4219508Copy full SHA for 4219508
src/hotspot/share/code/codeBlob.cpp
@@ -301,14 +301,15 @@ CodeBlob* CodeBlob::create(CodeBlob* archived_blob,
301
name,
302
archived_reloc_data,
303
archived_oop_maps);
304
+ assert(blob != nullptr, "sanity check");
305
+
306
#ifndef PRODUCT
307
blob->use_remarks(archived_asm_remarks);
308
archived_asm_remarks.clear();
309
blob->use_strings(archived_dbg_strings);
310
archived_dbg_strings.clear();
311
#endif // PRODUCT
312
- assert(blob != nullptr, "sanity check");
313
// Flush the code block
314
ICache::invalidate_range(blob->code_begin(), blob->code_size());
315
CodeCache::commit(blob); // Count adapters
0 commit comments