Skip to content

Commit

Permalink
Update src/hotspot/share/code/codeCache.cpp
Browse files Browse the repository at this point in the history
style fix

Co-authored-by: Tobias Hartmann <[email protected]>
  • Loading branch information
bulasevich and TobiHartmann authored Apr 3, 2024
1 parent b39dffd commit 7ddf512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/code/codeCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ GrowableArray<CodeHeap*>* CodeCache::_compiled_heaps = new(mtCode) GrowableArray
GrowableArray<CodeHeap*>* CodeCache::_nmethod_heaps = new(mtCode) GrowableArray<CodeHeap*> (static_cast<int>(CodeBlobType::All), mtCode);
GrowableArray<CodeHeap*>* CodeCache::_allocable_heaps = new(mtCode) GrowableArray<CodeHeap*> (static_cast<int>(CodeBlobType::All), mtCode);

static void check_min_size(const char *codeheap, size_t size, size_t required_size) {
static void check_min_size(const char* codeheap, size_t size, size_t required_size) {
if (size < required_size) {
log_debug(codecache)("Code heap (%s) size " SIZE_FORMAT " below required minimal size " SIZE_FORMAT,
codeheap, size, required_size);
Expand Down

0 comments on commit 7ddf512

Please sign in to comment.