diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-10-05 20:31:23 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-10-05 20:31:23 +0000 |
commit | 618b9757aa96db62da872255c9caeb6443086539 (patch) | |
tree | 4ffcbd40e46f844bae72d6530a1542a69da03059 /embedvar.h | |
parent | 5e7aa789c35577c2a092ac2f2d75bcee74e9b7f1 (diff) | |
download | perl-618b9757aa96db62da872255c9caeb6443086539.tar.gz |
PL_cshname is actually a constant value known at compile time.
PL_cshlen can be calculated by the compiler. So eliminate both as
interpreter variables, and the code that calculates PL_cshlen at
runtime.
p4raw-id: //depot/perl@32035
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/embedvar.h b/embedvar.h index 15057bce69..26d58210d5 100644 --- a/embedvar.h +++ b/embedvar.h @@ -95,8 +95,6 @@ #define PL_comppad_name_floor (vTHX->Icomppad_name_floor) #define PL_cop_seqmax (vTHX->Icop_seqmax) #define PL_cryptseen (vTHX->Icryptseen) -#define PL_cshlen (vTHX->Icshlen) -#define PL_cshname (vTHX->Icshname) #define PL_curcop (vTHX->Icurcop) #define PL_curcopdb (vTHX->Icurcopdb) #define PL_curpad (vTHX->Icurpad) @@ -409,8 +407,6 @@ #define PL_Icomppad_name_floor PL_comppad_name_floor #define PL_Icop_seqmax PL_cop_seqmax #define PL_Icryptseen PL_cryptseen -#define PL_Icshlen PL_cshlen -#define PL_Icshname PL_cshname #define PL_Icurcop PL_curcop #define PL_Icurcopdb PL_curcopdb #define PL_Icurpad PL_curpad |