This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Return DIE(...) to *return*ing Perl_die(...).
[perl5.git]
/
pp.c
diff --git
a/pp.c
b/pp.c
index
94965f2
..
ab1c680
100644
(file)
--- a/
pp.c
+++ b/
pp.c
@@
-3618,7
+3618,6
@@
PP(pp_crypt)
#else
DIE(aTHX_
"The crypt() function is unimplemented due to excessive paranoia.");
- return NORMAL;
#endif
}
@@
-6020,7
+6019,6
@@
PP(unimplemented_op)
dVAR;
DIE(aTHX_ "panic: unimplemented op %s (#%d) called", OP_NAME(PL_op),
PL_op->op_type);
- return NORMAL;
}
PP(pp_boolkeys)