File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/code Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -985,11 +985,8 @@ public void scheduleDeoptTargets() {
985
985
}
986
986
987
987
private static boolean parseInCurrentLayer (HostedMethod method ) {
988
- if (method .wrapped .isInBaseLayer () && !method .wrapped .reachableInCurrentLayer ()) {
989
- return false ;
990
- }
991
988
var hasAnalyzedGraph = method .wrapped .getAnalyzedGraph () != null ;
992
- if (!hasAnalyzedGraph && method .wrapped .reachableInCurrentLayer () && HostedImageLayerBuildingSupport . buildingExtensionLayer () ) {
989
+ if (!hasAnalyzedGraph && method .wrapped .reachableInCurrentLayer ()) {
993
990
ImageLayerLoader imageLayerLoader = HostedImageLayerBuildingSupport .singleton ().getLoader ();
994
991
hasAnalyzedGraph = imageLayerLoader .hasStrengthenedGraph (method .wrapped );
995
992
}
You can’t perform that action at this time.
0 commit comments