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 dd7df48 commit a1c3cf7Copy full SHA for a1c3cf7
src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/hotspot/HotSpotCompiledCodeStream.java
@@ -757,7 +757,9 @@ private void writeSites(HotSpotCompiledCode code) {
757
ResolvedJavaMethod method = (ResolvedJavaMethod) target;
758
writeMethod("target", method);
759
writeBoolean("direct", call.direct);
760
- writeBoolean("bind", call.bind);
+ if (call.direct) {
761
+ writeBoolean("bind", call.bind);
762
+ }
763
writeDebugInfo(debugInfo, true);
764
}
765
} else if (site instanceof Infopoint) {
0 commit comments