summaryrefslogtreecommitdiff
path: root/regen
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2021-06-15 12:34:22 +0000
committerKarl Williamson <khw@cpan.org>2021-07-31 15:24:26 -0700
commit4c8bd78b274a8ba54f3dd4b06b10a2a57cb9cf4a (patch)
tree659ce426777efd1eb1cbababa7aec1c4a277394b /regen
parent900d3b30296b2e23a5ebe1c5e277b46665a1ce6d (diff)
downloadperl-4c8bd78b274a8ba54f3dd4b06b10a2a57cb9cf4a.tar.gz
Remove the flags OPpSORT_STABLE and OPpSORT_UNSTABLE.
Remove the code in Perl_ck_sort() that reads from PL_hintgv that sets these, and the code in pp_sort that reads them and sets SORTf_STABLE and SORTf_UNSTABLE (which were no longer read. Remove these too.)
Diffstat (limited to 'regen')
-rw-r--r--regen/op_private2
1 files changed, 0 insertions, 2 deletions
diff --git a/regen/op_private b/regen/op_private
index c14bb168dc..ea24474308 100644
--- a/regen/op_private
+++ b/regen/op_private
@@ -676,8 +676,6 @@ addbits('sort',
2 => qw(OPpSORT_REVERSE REV ), # Reversed sort
3 => qw(OPpSORT_INPLACE INPLACE), # sort in-place; eg @a = sort @a
4 => qw(OPpSORT_DESCEND DESC ), # Descending sort
- 6 => qw(OPpSORT_STABLE STABLE ), # Use a stable algorithm
- 7 => qw(OPpSORT_UNSTABLE UNSTABLE),# Use an unstable algorithm
);