Skip to content

Commit

Permalink
Re-indent the case statement in pp_iter, ready for the next commit.
Browse files Browse the repository at this point in the history
This commit is purely a whitespace change. I haven't "tidied" up any of the
quirky formatting, just moved it all over by 4 spaces.
  • Loading branch information
nwc10 committed Jun 23, 2021
1 parent df4a859 commit 704871b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pp_hot.c
Expand Up @@ -3896,6 +3896,7 @@ PP(pp_iter)
itersvp = CxITERVAR(cx);
assert(itersvp);

{
switch (CxTYPE(cx)) {

case CXt_LOOP_LAZYSV: /* string increment */
Expand Down Expand Up @@ -4047,6 +4048,7 @@ PP(pp_iter)
default:
DIE(aTHX_ "panic: pp_iter, type=%u", CxTYPE(cx));
}
}

/* Try to bypass pushing &PL_sv_yes and calling pp_and(); instead
* jump straight to the AND op's op_other */
Expand Down

0 comments on commit 704871b

Please sign in to comment.