summaryrefslogtreecommitdiff
path: root/XSUB.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-02-23 23:45:39 +0000
committerNicholas Clark <nick@ccl4.org>2006-02-23 23:45:39 +0000
commit00b1698f76403476df2006ff536ab00ffc650220 (patch)
treeae5dbe027577f9396c0b682aa9327b1c244f49fc /XSUB.h
parent120ff8e9dfa335c7980849dcb6aebd32733af305 (diff)
downloadperl-00b1698f76403476df2006ff536ab00ffc650220.tar.gz
Replace direct flags tests & manipulations for SVpad_TYPED and
SVpad_OUR with macros SvPAD_TYPED(), SvPAD_OUR() etc, to abstract away the flags bits acutally used to store this information. p4raw-id: //depot/perl@27294
Diffstat (limited to 'XSUB.h')
-rw-r--r--XSUB.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/XSUB.h b/XSUB.h
index 9d4aae6249..9f881a2ebd 100644
--- a/XSUB.h
+++ b/XSUB.h
@@ -150,7 +150,7 @@ is a lexical $_ in scope.
#define dUNDERBAR I32 padoff_du = find_rundefsvoffset()
#define UNDERBAR ((padoff_du == NOT_IN_PAD \
- || PAD_COMPNAME_FLAGS(padoff_du) & SVpad_OUR) \
+ || PAD_COMPNAME_FLAGS_isOUR(padoff_du)) \
? DEFSV : PAD_SVl(padoff_du))
/* Simple macros to put new mortal values onto the stack. */