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 7f78711 commit a1c87a1Copy full SHA for a1c87a1
substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/meta/SharedMethod.java
@@ -83,4 +83,11 @@ public interface SharedMethod extends ResolvedJavaMethod {
83
84
/** Always call this method indirectly, even if it is normally called directly. */
85
boolean forceIndirectCall();
86
+
87
+ /**
88
+ * Override to fix JVMCI incompatibility issues (caused by "JDK-8357987: [JVMCI] Add support for
89
+ * retrieving all methods of a ResolvedJavaType").
90
+ */
91
+ @Override
92
+ boolean isDeclared();
93
}
0 commit comments