summaryrefslogtreecommitdiff
path: root/opnames.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-01-09 09:38:11 +0000
committerNicholas Clark <nick@ccl4.org>2011-01-09 09:38:11 +0000
commitf8a58b02cba77e7c7459cd85a1596c81a781f79f (patch)
treea83cd2f94ffbe6a14387502fcda1e9eded50be7d /opnames.h
parent9561d06f3dc19930c1acfa8c2e046c80782cb876 (diff)
downloadperl-f8a58b02cba77e7c7459cd85a1596c81a781f79f.tar.gz
Extract the opcode data from regen/opcode.pl into regen/opcodes
Whilst it is possible to open regen/opcode.pl and parse it to find the __END__ token, it's not the cleanest approach.
Diffstat (limited to 'opnames.h')
-rw-r--r--opnames.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/opnames.h b/opnames.h
index fdeb94fa2d..584ddc23e1 100644
--- a/opnames.h
+++ b/opnames.h
@@ -392,7 +392,7 @@ typedef enum opcode {
/* the OP_IS_(SOCKET|FILETEST) macros are optimized to a simple range
check because all the member OPs are contiguous in opcode.pl
- <DATA> table. opcode.pl verifies the range contiguity. */
+ <OPS> table. opcode.pl verifies the range contiguity. */
#define OP_IS_SOCKET(op) \
((op) >= OP_SEND && (op) <= OP_GETPEERNAME)