summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-06-19 11:19:54 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2014-06-19 11:37:59 -0400
commita25b59276cf9505a41280bad7847c33234f7e7c6 (patch)
treec5ecfc0a990e2757c079924901be073c9f0def07 /perl.c
parent148f39b7de6eae9ddd59e0b0aff691d6abea7aca (diff)
downloadperl-a25b59276cf9505a41280bad7847c33234f7e7c6.tar.gz
Revert "/* NOTREACHED */ belongs *before* the unreachable."
This reverts commit 148f39b7de6eae9ddd59e0b0aff691d6abea7aca. (Still needs more work, but wanted to see how well this passed with Jenkins.)
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/perl.c b/perl.c
index 012d94f15e..9e0d2b5049 100644
--- a/perl.c
+++ b/perl.c
@@ -2411,8 +2411,7 @@ S_run_body(pTHX_ I32 oldscope)
CALLRUNOPS(aTHX);
}
my_exit(0);
- /* NOTREACHED */
- assert(0);
+ assert(0); /* NOTREACHED */
}
/*
@@ -2739,8 +2738,7 @@ Perl_call_sv(pTHX_ SV *sv, VOL I32 flags)
FREETMPS;
JMPENV_POP;
my_exit_jump();
- /* NOTREACHED */
- assert(0);
+ assert(0); /* NOTREACHED */
case 3:
if (PL_restartop) {
PL_restartjmpenv = NULL;
@@ -2849,8 +2847,7 @@ Perl_eval_sv(pTHX_ SV *sv, I32 flags)
FREETMPS;
JMPENV_POP;
my_exit_jump();
- /* NOTREACHED */
- assert(0);
+ assert(0); /* NOTREACHED */
case 3:
if (PL_restartop) {
PL_restartjmpenv = NULL;
@@ -4868,8 +4865,7 @@ Perl_call_list(pTHX_ I32 oldscope, AV *paramList)
CopLINE_set(PL_curcop, oldline);
JMPENV_POP;
my_exit_jump();
- /* NOTREACHED */
- assert(0);
+ assert(0); /* NOTREACHED */
case 3:
if (PL_restartop) {
PL_curcop = &PL_compiling;