diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-09-15 15:37:43 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-09-16 08:22:51 -0700 |
commit | 51bed69aaa2e68c52d7ae58440ff51a40ccd0923 (patch) | |
tree | 8c039fecb437101561c88fc9fa983eab2ee1406d /dump.c | |
parent | 650b15348faa8fd7a1ec5848500a25bc9174ef9c (diff) | |
download | perl-51bed69aaa2e68c52d7ae58440ff51a40ccd0923.tar.gz |
Remove OPpCONST_FOLDED
Now that we have op->op_folded, we don’t need OPpCONST_FOLDED any
more. In removing it, I modified B::Concise to output op_folded the
way OPpCONST_FOLDED was output before, since it can be helpful to have
it when reading op dumps.
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -744,7 +744,6 @@ const struct flag_to_name op_const_names[] = { {OPpCONST_SHORTCIRCUIT, ",SHORTCIRCUIT"}, {OPpCONST_STRICT, ",STRICT"}, {OPpCONST_ENTERED, ",ENTERED"}, - {OPpCONST_FOLDED, ",FOLDED"}, {OPpCONST_BARE, ",BARE"} }; |