summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-02-04 13:59:21 +0000
committerNicholas Clark <nick@ccl4.org>2008-02-04 13:59:21 +0000
commit76753e7fcd0153c82794b436092c87140c38c16d (patch)
tree88664c6a4b58b4b6c72fc5e391b1cc98c657f8ac /perl.h
parentde37a1949aa0086cb5f4db306875e7b8338704bd (diff)
downloadperl-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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl.h b/perl.h
index ba9549243d..35bc28a53a 100644
--- a/perl.h
+++ b/perl.h
@@ -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[];