We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ca0fcc commit f0cf813Copy full SHA for f0cf813
pp_ctl.c
@@ -3291,18 +3291,19 @@ PP(pp_goto)
3291
}
3292
else sv = AvARRAY(arg)[index];
3293
3294
-
+#ifdef PERL_RC_STACK
3295
rpp_push_1(
3296
sv
3297
- ?
3298
-#ifdef PERL_RC_STACK
3299
- sv
+ ? sv
3300
: newSVavdefelem(arg, index, 1)
+ );
3301
#else
3302
- (r ? SvREFCNT_inc_NN(sv_2mortal(sv)) : sv)
+ rpp_push_1(
+ sv
3303
+ ? (r ? SvREFCNT_inc_NN(sv_2mortal(sv)) : sv)
3304
: sv_2mortal(newSVavdefelem(arg, index, 1))
-#endif
3305
);
3306
+#endif
3307
3308
3309
0 commit comments