From c049f2c74cf4efb16e8dbaaf393922e93035413b Mon Sep 17 00:00:00 2001 From: Patrick Ziegler Date: Thu, 10 Oct 2024 18:27:34 +0200 Subject: [PATCH] Move notifyAfterCompile call out of compileAll --- .../src/com/oracle/svm/hosted/code/CompileQueue.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/code/CompileQueue.java b/substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/code/CompileQueue.java index b2bd6c67e655..589bff5784fa 100644 --- a/substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/code/CompileQueue.java +++ b/substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/code/CompileQueue.java @@ -426,6 +426,7 @@ public void finish(DebugContext debug) { createSuites(); try (ProgressReporter.ReporterClosable ac = reporter.printCompiling()) { compileAll(); + notifyAfterCompile(); } metricValues.print(universe.getBigBang().getOptions()); @@ -903,8 +904,6 @@ protected void compileAll() throws InterruptedException { runOnExecutor(this::scheduleEntryPoints); runOnExecutor(this::scheduleDeoptTargets); - - notifyAfterCompile(); } private void notifyAfterCompile() {