diff options
author | David Mitchell <davem@iabyn.com> | 2014-02-26 20:54:05 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2014-02-27 16:16:18 +0000 |
commit | 3f44dc817bc788142268d4c17f46269d4468fb57 (patch) | |
tree | 28b02870c1751b89fe8871d9baaef7462054aaca /intrpvar.h | |
parent | bdf02c570d69e9038a07f0ec1049f4f26aedf15a (diff) | |
download | perl-3f44dc817bc788142268d4c17f46269d4468fb57.tar.gz |
move PL_defgv nearer the top of intrvar.h
on the grounds that its a reasonably hot variable.
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index 3472215eb1..2c1b73ee49 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -76,6 +76,7 @@ PERLVAR(I, tainted, bool) /* using variables controlled by $< */ PERLVAR(I, delaymagic, U16) /* ($<,$>) = ... */ PERLVAR(I, localizing, U8) /* are we processing a local() list? */ PERLVAR(I, in_eval, U8) /* trap "fatal" errors? */ +PERLVAR(I, defgv, GV *) /* the *_ glob */ /* =for apidoc mn|bool|PL_dowarn @@ -349,7 +350,6 @@ PERLVAR(I, psig_pend, int *) /* per-signal "count" of pending */ /* shortcuts to various I/O objects */ PERLVAR(I, stdingv, GV *) /* *STDIN */ PERLVAR(I, stderrgv, GV *) /* *STDERR */ -PERLVAR(I, defgv, GV *) PERLVAR(I, argvgv, GV *) /* *ARGV */ PERLVAR(I, argvoutgv, GV *) /* *ARGVOUT */ PERLVAR(I, argvout_stack, AV *) |