summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2020-07-13 23:33:55 +0100
committerDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2020-08-04 10:37:54 +0100
commit5d1739474d967de1ab8a8f88aa5eff250dbc0eab (patch)
treebd0b2ecf9040789e5352c90912a8255d585ad871 /lib
parenta123eb892ee6a30b5910abc29fbccf2386306e08 (diff)
downloadperl-5d1739474d967de1ab8a8f88aa5eff250dbc0eab.tar.gz
Widen the feature bundle hint mask to 4 bits
VMS only uses two bits for its hints, so we can steal one more for the feature bundles. This is necessary if we want to remove features from a future bundle, e.g. `indirect` and `switch`.
Diffstat (limited to 'lib')
-rw-r--r--lib/feature.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/feature.pm b/lib/feature.pm
index 1d3711e53e..b5ee2eca9b 100644
--- a/lib/feature.pm
+++ b/lib/feature.pm
@@ -65,7 +65,7 @@ my %removed = (
);
our $hint_shift = 26;
-our $hint_mask = 0x1c000000;
+our $hint_mask = 0x3c000000;
our @hint_bundles = qw( default 5.10 5.11 5.15 5.23 5.27 );
# This gets set (for now) in $^H as well as in %^H,