summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-05-05 13:26:28 +0000
committerNicholas Clark <nick@ccl4.org>2007-05-05 13:26:28 +0000
commit71eebe1e3a3b9aa60ed123b7c1e96baa1c7aff6e (patch)
tree1aff1ed5f5cd82a5a74bdc580f9ac9fcfb68895c /intrpvar.h
parentfb205e7a8791bda7ee1f6f939d96b947f4eb160c (diff)
downloadperl-71eebe1e3a3b9aa60ed123b7c1e96baa1c7aff6e.tar.gz
Shuffling PL_gensym saves 8 bytes on LP64 systems.
p4raw-id: //depot/perl@31152
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intrpvar.h b/intrpvar.h
index b2749d1736..02fc97efcd 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -179,8 +179,6 @@ PERLVAR(Ieval_start, OP *)
/* runtime control stuff */
PERLVARI(Icurcopdb, COP *, NULL)
-/* statics moved here for shared library purposes */
-PERLVARI(Igensym, I32, 0) /* next symbol for getsym() to define */
PERLVAR(Ifilemode, int) /* so nextargv() can preserve mode */
PERLVAR(Ilastfd, int) /* what to preserve mode on */
PERLVAR(Ioldname, char *) /* what to preserve mode on */
@@ -189,6 +187,8 @@ PERLVAR(ICmd, char *) /* stuff to free from do_aexec, vfork safe */
PERLVAR(Ipreambleav, AV *)
PERLVAR(Imess_sv, SV *)
PERLVAR(Iors_sv, SV *) /* output record separator $\ */
+/* statics moved here for shared library purposes */
+PERLVARI(Igensym, I32, 0) /* next symbol for getsym() to define */
PERLVAR(Iin_my, U16) /* we're compiling a "my" (or "our") declaration */
PERLVARI(Ilaststype, U16, OP_STAT)
PERLVARI(Ilaststatval, int, -1)