From 76753e7fcd0153c82794b436092c87140c38c16d Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Mon, 4 Feb 2008 13:59:21 +0000 Subject: 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 --- perl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'perl.h') 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[]; -- cgit v1.2.1