We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
headius
Learn more about funding links in repositories.
Report abuse
1 parent a61f07e commit b8195a2Copy full SHA for b8195a2
core/src/main/java/org/jruby/ir/instructions/CallBase.java
@@ -447,8 +447,8 @@ private void captureFrameReadsAndWrites() {
447
frameWrites = ALL;
448
}
449
} else {
450
- frameReads = MethodIndex.METHOD_FRAME_READS.getOrDefault(getName(), Collections.EMPTY_SET);
451
- frameWrites = MethodIndex.METHOD_FRAME_WRITES.getOrDefault(getName(), Collections.EMPTY_SET);
+ frameReads = MethodIndex.METHOD_FRAME_READS.getOrDefault(getId(), Collections.EMPTY_SET);
+ frameWrites = MethodIndex.METHOD_FRAME_WRITES.getOrDefault(getId(), Collections.EMPTY_SET);
452
453
454
0 commit comments