Skip to content

Commit 823d23b

Browse files
committed
GH-647 global catch does not use 'this' - it does not need to be part of FULL_FRAME
1 parent ec49eef commit 823d23b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

visualvm/libs.profiler/lib.profiler/src/org/graalvm/visualvm/lib/jfluid/classfile/DynamicClassInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ public void addGlobalCatchStackMapTableEntry(int methodIdx, int endPC) {
543543
if (constructor) {
544544
localsCPIdx = new int[] {0};
545545
} else {
546-
localsCPIdx = new int[] {classIndex};
546+
localsCPIdx = new int[] {};
547547
}
548548
}
549549
getStackMapTables().addFullStackMapFrameEntry(methodIdx, endPC, localsCPIdx, stacksCPIdx);

0 commit comments

Comments
 (0)