Skip to content

Commit 71d7168

Browse files
committed
fix propagation of eagerResolving argument
1 parent 7b704c3 commit 71d7168

File tree

1 file changed

+1
-1
lines changed
  • compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/hotspot/libgraal

1 file changed

+1
-1
lines changed

compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/hotspot/libgraal/RunTime.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public static long compileMethod(long methodHandle, boolean useProfilingInfo,
124124
HotSpotResolvedJavaMethod method = runtime.unhand(HotSpotResolvedJavaMethod.class, methodHandle);
125125
HotSpotCompilationRequest request = new HotSpotCompilationRequest(method, entryBCI, 0L);
126126
try (CompilationContext ignored = HotSpotGraalServices.openLocalCompilationContext(request)) {
127-
CompilationTask task = new CompilationTask(runtime, compiler, request, useProfilingInfo, false, eagerResolving, installAsDefault);
127+
CompilationTask task = new CompilationTask(runtime, compiler, request, useProfilingInfo, false, false, eagerResolving, installAsDefault);
128128
long allocatedBytesBefore = 0;
129129
long timeBefore = 0;
130130
if (timeAndMemConsumer != null) {

0 commit comments

Comments
 (0)