diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-11-05 12:57:40 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-11-05 12:57:40 +0000 |
commit | eb87d5ef4f3abe7f9c4c2c1f62f9acb7cae8b335 (patch) | |
tree | 4fede618762f8ec6dec65948a9f4cc510981490e /pp.c | |
parent | b311af6269bf99f73d9dd17d28dfefaec9fc7ec4 (diff) | |
download | perl-eb87d5ef4f3abe7f9c4c2c1f62f9acb7cae8b335.tar.gz |
Allow passing of the full enum name into the tryAMAGICbin family of
macros, to avoid needing C pre-processor string concatenation within
the lowest level expansion.
p4raw-id: //depot/perl@26015
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2093,7 +2093,7 @@ PP(pp_ncmp) PP(pp_slt) { - dSP; tryAMAGICbinSET(slt,0); + dSP; tryAMAGICbinSET_var(slt_amg,0); { dPOPTOPssrl; const int cmp = (IN_LOCALE_RUNTIME @@ -2106,7 +2106,7 @@ PP(pp_slt) PP(pp_sgt) { - dSP; tryAMAGICbinSET(sgt,0); + dSP; tryAMAGICbinSET_var(sgt_amg,0); { dPOPTOPssrl; const int cmp = (IN_LOCALE_RUNTIME @@ -2119,7 +2119,7 @@ PP(pp_sgt) PP(pp_sle) { - dSP; tryAMAGICbinSET(sle,0); + dSP; tryAMAGICbinSET_var(sle_amg,0); { dPOPTOPssrl; const int cmp = (IN_LOCALE_RUNTIME @@ -2132,7 +2132,7 @@ PP(pp_sle) PP(pp_sge) { - dSP; tryAMAGICbinSET(sge,0); + dSP; tryAMAGICbinSET_var(sge_amg,0); { dPOPTOPssrl; const int cmp = (IN_LOCALE_RUNTIME |