diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-11-07 21:31:16 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-11-07 21:31:16 +0000 |
commit | afd9910b0da24dd1fe1207d445456a8c0f2176c5 (patch) | |
tree | bf1afd50faf8057693db8f35281eb708e516b5bf /opcode.h | |
parent | ffb8d87aed2af02cd51b9c989d04b1c37420bea3 (diff) | |
download | perl-afd9910b0da24dd1fe1207d445456a8c0f2176c5.tar.gz |
Merge pp_slt, pp_sgt and pp_sge into pp_sle. (The most commonly used
of the 4. Not that any are that popular.)
p4raw-id: //depot/perl@26039
Diffstat (limited to 'opcode.h')
-rw-r--r-- | opcode.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -850,10 +850,10 @@ EXT Perl_ppaddr_t PL_ppaddr[] /* or perlvars.h */ MEMBER_TO_FPTR(Perl_pp_i_ne), MEMBER_TO_FPTR(Perl_pp_ncmp), MEMBER_TO_FPTR(Perl_pp_i_ncmp), - MEMBER_TO_FPTR(Perl_pp_slt), - MEMBER_TO_FPTR(Perl_pp_sgt), + MEMBER_TO_FPTR(Perl_pp_sle), /* Perl_pp_slt */ + MEMBER_TO_FPTR(Perl_pp_sle), /* Perl_pp_sgt */ MEMBER_TO_FPTR(Perl_pp_sle), - MEMBER_TO_FPTR(Perl_pp_sge), + MEMBER_TO_FPTR(Perl_pp_sle), /* Perl_pp_sge */ MEMBER_TO_FPTR(Perl_pp_seq), MEMBER_TO_FPTR(Perl_pp_sne), MEMBER_TO_FPTR(Perl_pp_scmp), |