Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nnjun committed Oct 15, 2023
1 parent b90f34d commit dcd4196
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ public MutableMethodImplementation(MethodImplementation methodImplementation) {

for (DebugItem debugItem: methodImplementation.getDebugItems()) {
int debugCodeAddress = debugItem.getCodeAddress();
if (debugCodeAddress >= codeAddressToIndex.length) {
continue;
}
int locationIndex = mapCodeAddressToIndex(codeAddressToIndex, debugCodeAddress);
MethodLocation debugLocation = instructionList.get(locationIndex);
BuilderDebugItem builderDebugItem = convertDebugItem(debugItem);
Expand Down

0 comments on commit dcd4196

Please sign in to comment.