Skip to content

Commit 1aa850f

Browse files
committed
new bytecode emitter, GenBCode
same commit as scala/scala@22ee2df
1 parent 98bce9f commit 1aa850f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/asm/src/dotty/tools/asm/tree/MethodNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ public void visitEnd() {
458458
*/
459459
protected LabelNode getLabelNode(final Label l) {
460460
if (!(l.info instanceof LabelNode)) {
461-
l.info = new LabelNode();
461+
l.info = new LabelNode(l);
462462
}
463463
return (LabelNode) l.info;
464464
}

0 commit comments

Comments
 (0)