Skip to content

Commit 69ff86a

Browse files
committedMay 18, 2022
8286870: Memory leak with RepeatCompilation
Reviewed-by: kvn, chagedorn
1 parent 81e4bdb commit 69ff86a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/hotspot/share/compiler/compileBroker.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -2312,8 +2312,9 @@ void CompileBroker::invoke_compiler_on_method(CompileTask* task) {
23122312
/* Repeat compilation without installing code for profiling purposes */
23132313
int repeat_compilation_count = directive->RepeatCompilationOption;
23142314
while (repeat_compilation_count > 0) {
2315+
ResourceMark rm(thread);
23152316
task->print_ul("NO CODE INSTALLED");
2316-
comp->compile_method(&ci_env, target, osr_bci, false , directive);
2317+
comp->compile_method(&ci_env, target, osr_bci, false, directive);
23172318
repeat_compilation_count--;
23182319
}
23192320
}

0 commit comments

Comments
 (0)
Please sign in to comment.