diff options
author | Nicholas Clark <nick@ccl4.org> | 2013-05-03 15:52:38 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-05-20 21:19:42 +0200 |
commit | f8e5a5db38586c726249f161f1fbb581d1738ca2 (patch) | |
tree | d3a85220227025357230385e40a58c810df5b45d /packsizetables.c | |
parent | 5fa237154915dfcb787e0c5403e6260482a5fb3e (diff) | |
download | perl-f8e5a5db38586c726249f161f1fbb581d1738ca2.tar.gz |
Eliminate pre-5.9.x conditional code for PERL_PACK_CAN_SHRIEKSIGN
PERL_PACK_CAN_SHRIEKSIGN has been unconditionally defined for versions 5.9.x
and greater, and undefined for 5.8.x. As we are never going to need to
port changes back to maint-5.8 any more, eliminate all the 5.8.x related code
and the macro that supports it.
Diffstat (limited to 'packsizetables.c')
-rw-r--r-- | packsizetables.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/packsizetables.c b/packsizetables.c index afeb210712..8c57d410aa 100644 --- a/packsizetables.c +++ b/packsizetables.c @@ -88,38 +88,22 @@ STATIC const packprops_t packprops[512] = { 0, 0, /* L */ sizeof(unsigned long), 0, -#if defined(PERL_PACK_CAN_SHRIEKSIGN) /* N */ SIZE32, -#else - 0, -#endif 0, 0, 0, 0, /* S */ sizeof(unsigned short), 0, 0, -#if defined(PERL_PACK_CAN_SHRIEKSIGN) /* V */ SIZE32, -#else - 0, -#endif 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* i */ sizeof(int), 0, 0, /* l */ sizeof(long), 0, -#if defined(PERL_PACK_CAN_SHRIEKSIGN) /* n */ SIZE16, -#else - 0, -#endif 0, 0, 0, 0, /* s */ sizeof(short), 0, 0, -#if defined(PERL_PACK_CAN_SHRIEKSIGN) /* v */ SIZE16, -#else - 0, -#endif 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -213,19 +197,11 @@ STATIC const packprops_t packprops[512] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, /* l */ sizeof(long), 0, -#if defined(PERL_PACK_CAN_SHRIEKSIGN) /* n */ SIZE16, -#else - 0, -#endif 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* s */ sizeof(short), 0, 0, -#if defined(PERL_PACK_CAN_SHRIEKSIGN) /* v */ SIZE16, -#else - 0, -#endif 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -233,19 +209,11 @@ STATIC const packprops_t packprops[512] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, /* L */ sizeof(unsigned long), 0, -#if defined(PERL_PACK_CAN_SHRIEKSIGN) /* N */ SIZE32, -#else - 0, -#endif 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* S */ sizeof(unsigned short), 0, 0, -#if defined(PERL_PACK_CAN_SHRIEKSIGN) /* V */ SIZE32, -#else - 0, -#endif 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; |