Skip to content

Commit 7405897

Browse files
committed
Remove a misleading relict from pir translation.
1 parent 80fed8e commit 7405897

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/QAST/Operations.nqp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ QAST::Operations.add_core_op('xor', :inlinable(1), -> $qastcomp, $op {
803803
$ops.push_pirop('set', $ops, $fpost);
804804
}
805805
else {
806-
$ops.'push_pirop'('new', $ops, '["Undef"]');
806+
$ops.push_pirop('new', $ops, '["Undef"]');
807807
}
808808

809809
$ops.push($endlabel);
@@ -950,7 +950,7 @@ QAST::Operations.add_core_op('lexotic', -> $qastcomp, $op {
950950
my $handler := $*BLOCK.fresh_lex_p();
951951
$ops.push_pirop('root_new', $handler, "['parrot';'Continuation']");
952952
$ops.push_pirop('set_label', $handler, $label1);
953-
$ops.'push_pirop'('.lex', $lexname, $handler);
953+
$ops.push_pirop('.lex', $lexname, $handler);
954954

955955
my $cpost := $qastcomp.coerce($qastcomp.compile_all_the_stmts($op.list()), 'P');
956956
$ops.push($cpost);

0 commit comments

Comments
 (0)