diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-01-09 09:38:11 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-01-09 09:38:11 +0000 |
commit | f8a58b02cba77e7c7459cd85a1596c81a781f79f (patch) | |
tree | a83cd2f94ffbe6a14387502fcda1e9eded50be7d /opnames.h | |
parent | 9561d06f3dc19930c1acfa8c2e046c80782cb876 (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |