summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-10-05 20:31:23 +0000
committerNicholas Clark <nick@ccl4.org>2007-10-05 20:31:23 +0000
commit618b9757aa96db62da872255c9caeb6443086539 (patch)
tree4ffcbd40e46f844bae72d6530a1542a69da03059 /embed.h
parent5e7aa789c35577c2a092ac2f2d75bcee74e9b7f1 (diff)
downloadperl-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 'embed.h')
-rw-r--r--embed.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/embed.h b/embed.h
index 9d41f69de9..910afa725d 100644
--- a/embed.h
+++ b/embed.h
@@ -1520,7 +1520,6 @@
#define lop S_lop
#define missingterm S_missingterm
#define no_op S_no_op
-#define set_csh S_set_csh
#define sublex_done S_sublex_done
#define sublex_push S_sublex_push
#define sublex_start S_sublex_start
@@ -3802,7 +3801,6 @@
#define lop(a,b,c) S_lop(aTHX_ a,b,c)
#define missingterm(a) S_missingterm(aTHX_ a)
#define no_op(a,b) S_no_op(aTHX_ a,b)
-#define set_csh() S_set_csh(aTHX)
#define sublex_done() S_sublex_done(aTHX)
#define sublex_push() S_sublex_push(aTHX)
#define sublex_start() S_sublex_start(aTHX)