summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-11-05 12:57:40 +0000
committerNicholas Clark <nick@ccl4.org>2005-11-05 12:57:40 +0000
commiteb87d5ef4f3abe7f9c4c2c1f62f9acb7cae8b335 (patch)
tree4fede618762f8ec6dec65948a9f4cc510981490e /pp.c
parentb311af6269bf99f73d9dd17d28dfefaec9fc7ec4 (diff)
downloadperl-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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pp.c b/pp.c
index 63bc8ed091..c3d9d2bfb5 100644
--- a/pp.c
+++ b/pp.c
@@ -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