diff options
Diffstat (limited to 'ext/B')
-rw-r--r-- | ext/B/B/CC.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/B/B/CC.pm b/ext/B/B/CC.pm index 4affda0014..30882dd48f 100644 --- a/ext/B/B/CC.pm +++ b/ext/B/B/CC.pm @@ -54,7 +54,7 @@ my %ignore_op; # Hash of ops which do nothing except returning op_next my %need_curcop; # Hash of ops which need PL_curcop BEGIN { - foreach (qw(pp_scalar pp_regcmaybe pp_lineseq pp_scope pp_null)) { + foreach (qw(pp_setstate pp_scalar pp_regcmaybe pp_lineseq pp_scope pp_null)) { $ignore_op{$_} = 1; } } |