Skip to content

Commit b752c14

Browse files
committed
Fix thinkos.
1 parent 2e2e62a commit b752c14

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/QAST/Operations.nqp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1787,20 +1787,20 @@ QAST::Operations.add_core_pirop_mapping('wval', 'nqp_get_sc_object', 'Psi');
17871787
QAST::Operations.add_core_op('scwbdisable', -> $qastcomp, $op {
17881788
my $ops := PIRT::Ops.new();
17891789
$ops.push_pirop('nqp_disable_sc_write_barrier');
1790-
$ops.result('null');
1790+
$ops.result('0');
17911791
$ops
17921792
});
17931793
QAST::Operations.add_core_op('scwbenable', -> $qastcomp, $op {
17941794
my $ops := PIRT::Ops.new();
17951795
$ops.push_pirop('nqp_enable_sc_write_barrier');
1796-
$ops.result('null');
1796+
$ops.result('0');
17971797
$ops
17981798
});
17991799
QAST::Operations.add_core_pirop_mapping('pushcompsc', 'nqp_push_compiling_sc', '0P');
18001800
QAST::Operations.add_core_op('popcompsc', -> $qastcomp, $op {
18011801
my $ops := PIRT::Ops.new();
18021802
$ops.push_pirop('nqp_pop_compiling_sc');
1803-
$ops.result('null');
1803+
$ops.result('0');
18041804
$ops
18051805
});
18061806

0 commit comments

Comments
 (0)