This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Add OP_IS_INFIX_BIT
[perl5.git]
/
opnames.h
diff --git
a/opnames.h
b/opnames.h
index
e68c8ca
..
c225ac4
100644
(file)
--- a/
opnames.h
+++ b/
opnames.h
@@
-436,4
+436,7
@@
typedef enum opcode {
#define OP_IS_DIRHOP(op) \
((op) >= OP_READDIR && (op) <= OP_CLOSEDIR)
+#define OP_IS_INFIX_BIT(op) \
+ ((op) >= OP_BIT_AND && (op) <= OP_SBIT_OR)
+
/* ex: set ro: */