summaryrefslogtreecommitdiff
path: root/scope.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2013-08-05 01:22:46 -0700
committerFather Chrysostomos <sprout@cpan.org>2013-08-05 02:23:36 -0700
commita81bac00de6943a3346cceca95db5f3ce716aa0f (patch)
tree145740a66a8254d619be730867e8ac08b49e4548 /scope.h
parent4e3cfd59d9b58c4fdfd2efd7ae4a47b8eef16913 (diff)
downloadperl-a81bac00de6943a3346cceca95db5f3ce716aa0f.tar.gz
Remove SAVEt_STACK_CXPOS
81ed78b25c4b removed the only use of this.
Diffstat (limited to 'scope.h')
-rw-r--r--scope.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/scope.h b/scope.h
index 97aa1b6511..d282ff6a8f 100644
--- a/scope.h
+++ b/scope.h
@@ -66,7 +66,7 @@
#define SAVEt_SAVESWITCHSTACK 39
#define SAVEt_SHARED_PVREF 40
#define SAVEt_SPTR 41
-#define SAVEt_STACK_CXPOS 42
+/* UNUSED 42 */
#define SAVEt_SV 43
#define SAVEt_SVREF 44
#define SAVEt_VPTR 45
@@ -291,15 +291,6 @@ scope has the given name. Name must be a literal string.
save stack. */
#define SAVECOMPILEWARNINGS() save_pushptr(PL_compiling.cop_warnings, SAVEt_COMPILE_WARNINGS)
-#define SAVESTACK_CXPOS() \
- STMT_START { \
- dSS_ADD; \
- SS_ADD_INT(cxstack[cxstack_ix].blk_oldsp); \
- SS_ADD_INT(cxstack_ix); \
- SS_ADD_UV(SAVEt_STACK_CXPOS); \
- SS_ADD_END(3); \
- } STMT_END
-
#define SAVEPARSER(p) save_pushptr((p), SAVEt_PARSER)
#ifdef USE_ITHREADS