summaryrefslogtreecommitdiff
path: root/opnames.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-11-12 23:09:46 +0000
committerNicholas Clark <nick@ccl4.org>2006-11-12 23:09:46 +0000
commit7834bb7eff465724a885b368420973bce2d27483 (patch)
treef9bb3a5ea2524ae8bff594204ddf24c129999e69 /opnames.h
parent7839681303e3d04b534a3699668f0c6fc50de883 (diff)
downloadperl-7834bb7eff465724a885b368420973bce2d27483.tar.gz
Re-order ops to the implementation order in pp_sys.c - this makes a
branch table corresponding to a switch statement slightly smaller. p4raw-id: //depot/perl@29251
Diffstat (limited to 'opnames.h')
-rw-r--r--opnames.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/opnames.h b/opnames.h
index 5b37890d20..fa521a49ec 100644
--- a/opnames.h
+++ b/opnames.h
@@ -258,23 +258,23 @@ typedef enum opcode {
OP_FTEWRITE, /* 240 */
OP_FTEEXEC, /* 241 */
OP_FTIS, /* 242 */
- OP_FTEOWNED, /* 243 */
- OP_FTROWNED, /* 244 */
- OP_FTZERO, /* 245 */
- OP_FTSIZE, /* 246 */
- OP_FTMTIME, /* 247 */
- OP_FTATIME, /* 248 */
- OP_FTCTIME, /* 249 */
+ OP_FTSIZE, /* 243 */
+ OP_FTMTIME, /* 244 */
+ OP_FTATIME, /* 245 */
+ OP_FTCTIME, /* 246 */
+ OP_FTROWNED, /* 247 */
+ OP_FTEOWNED, /* 248 */
+ OP_FTZERO, /* 249 */
OP_FTSOCK, /* 250 */
OP_FTCHR, /* 251 */
OP_FTBLK, /* 252 */
OP_FTFILE, /* 253 */
OP_FTDIR, /* 254 */
OP_FTPIPE, /* 255 */
- OP_FTLINK, /* 256 */
- OP_FTSUID, /* 257 */
- OP_FTSGID, /* 258 */
- OP_FTSVTX, /* 259 */
+ OP_FTSUID, /* 256 */
+ OP_FTSGID, /* 257 */
+ OP_FTSVTX, /* 258 */
+ OP_FTLINK, /* 259 */
OP_FTTTY, /* 260 */
OP_FTTEXT, /* 261 */
OP_FTBINARY, /* 262 */
@@ -321,9 +321,9 @@ typedef enum opcode {
OP_MSGCTL, /* 303 */
OP_MSGSND, /* 304 */
OP_MSGRCV, /* 305 */
- OP_SEMGET, /* 306 */
- OP_SEMCTL, /* 307 */
- OP_SEMOP, /* 308 */
+ OP_SEMOP, /* 306 */
+ OP_SEMGET, /* 307 */
+ OP_SEMCTL, /* 308 */
OP_REQUIRE, /* 309 */
OP_DOFILE, /* 310 */
OP_ENTEREVAL, /* 311 */