summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorRobin Barker <rmbarker@cpan.org>2011-05-15 19:02:29 +0100
committerFather Chrysostomos <sprout@cpan.org>2011-05-19 12:53:56 -0700
commit9410e98db2629cb1014040562236ba42a308f939 (patch)
tree8f87af3d185045f7e81da25b7d23876ef280ade1 /pp_ctl.c
parent339b1cd05db3de2835b60993172b75a455b7e33f (diff)
downloadperl-9410e98db2629cb1014040562236ba42a308f939.tar.gz
unused variables in pp_ctl.c
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index fe36489fe7..f86f55cd72 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -2692,8 +2692,8 @@ PP(pp_goto)
SAVEFREESV(cv); /* later, undo the 'avoid premature free' hack */
if (CvISXSUB(cv)) {
OP* const retop = cx->blk_sub.retop;
- SV **newsp;
- I32 gimme;
+ SV **newsp __attribute__unused__;
+ I32 gimme __attribute__unused__;
if (reified) {
I32 index;
for (index=0; index<items; index++)
@@ -4840,7 +4840,7 @@ PP(pp_leavewhen)
{
dVAR; dSP;
register PERL_CONTEXT *cx;
- I32 gimme;
+ I32 gimme __attribute__unused__;
SV **newsp;
PMOP *newpm;