summaryrefslogtreecommitdiff
path: root/ext/B
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2014-12-19 16:09:19 +0000
committerDavid Mitchell <davem@iabyn.com>2014-12-19 16:09:19 +0000
commit9cdf4efdf7edab0a14edf8175f6115a3c49e165d (patch)
treea990cfe9c7be1c7d9026d6a6fb8e7a0e8694f413 /ext/B
parent07fd17ee52a0c9e57138b5cb43fa8b18dcd3b06a (diff)
downloadperl-9cdf4efdf7edab0a14edf8175f6115a3c49e165d.tar.gz
B.xs: remove redundant assignment
Follow-up to 500f40f555ee.
Diffstat (limited to 'ext/B')
-rw-r--r--ext/B/B.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/B/B.xs b/ext/B/B.xs
index 90bf8d5f60..52713fbb01 100644
--- a/ext/B/B.xs
+++ b/ext/B/B.xs
@@ -1383,7 +1383,7 @@ aux_list(o, cv)
bool is_hash = FALSE;
#ifdef USE_ITHREADS
PADLIST * const padlist = CvPADLIST(cv);
- PAD *comppad = comppad = PadlistARRAY(padlist)[1];
+ PAD *comppad = PadlistARRAY(padlist)[1];
#endif
EXTEND(SP, len);