Skip to content

Commit 5bbbe43

Browse files
committed
SRE: pass frame to construct call node
1 parent 40edc74 commit 5bbbe43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/SREModuleBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ static Object createMatch(VirtualFrame frame, Node inliningTarget, Object patter
605605
try {
606606
if (matchProfile.profile(inliningTarget, (boolean) libResult.readMember(regexResult, "isMatch"))) {
607607
Object indexGroup = lookupIndexGroupNode.execute(frame, inliningTarget, pattern, T__PATTERN__INDEXGROUP);
608-
return constructResultNode.execute(matchConstructor, pattern, pos, endPos, regexResult, input, indexGroup);
608+
return constructResultNode.execute(frame, matchConstructor, pattern, pos, endPos, regexResult, input, indexGroup);
609609
} else {
610610
return PNone.NONE;
611611
}

0 commit comments

Comments
 (0)