Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public static InstalledCode getInstalledCode(ResolvedJavaMethod method, String n
}
private static class InstalledCodeStub extends HotSpotNmethod {
private InstalledCodeStub(HotSpotResolvedJavaMethodImpl method, String name, long address, long entryPoint) {
super(method, name, false, 0, true);
super(method, name, false, true, 0);
this.address = address;
this.entryPoint = entryPoint;
}
Expand Down