We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8fbbb6 commit b565a10Copy full SHA for b565a10
compiler/src/jdk.graal.compiler.libgraal/src/jdk/graal/compiler/libgraal/LibGraalFeature.java
@@ -232,7 +232,7 @@ void afterAnalysis(AfterAnalysisAccess access) {
232
Map<String, String> modules = libgraalLoader.getClassModuleMap();
233
for (OptionKey<?> option : options) {
234
OptionDescriptor descriptor = option.getDescriptor();
235
- if (descriptor != null) {
+ if (descriptor != null && descriptor.getContainer().optionsAreServiceLoadable()) {
236
GraalError.guarantee(access.isReachable(option.getClass()), "%s", option.getClass());
237
GraalError.guarantee(access.isReachable(descriptor.getClass()), "%s", descriptor.getClass());
238
0 commit comments