diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-02-04 13:59:21 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-02-04 13:59:21 +0000 |
commit | 76753e7fcd0153c82794b436092c87140c38c16d (patch) | |
tree | 88664c6a4b58b4b6c72fc5e391b1cc98c657f8ac /perl.h | |
parent | de37a1949aa0086cb5f4db306875e7b8338704bd (diff) | |
download | perl-76753e7fcd0153c82794b436092c87140c38c16d.tar.gz |
Micro-optimise the order of the context types. [Because I can :-)]
Here saves 72 bytes in pp_ctl.o. Small, but in the right direction.
p4raw-id: //depot/perl@33232
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4363,17 +4363,17 @@ EXTCONST unsigned char PL_freq[]; #ifdef DOINIT EXTCONST char* const PL_block_type[] = { "NULL", - "SUB", - "EVAL", "WHEN", - "SUBST", "BLOCK", - "FORMAT", "GIVEN", "LOOP_FOR", "LOOP_PLAIN", "LOOP_LAZYSV", "LOOP_LAZYIV", + "SUB", + "FORMAT", + "EVAL", + "SUBST" }; #else EXTCONST char* PL_block_type[]; |