This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Revert "tweak NOT_REACHED in DEBUGGING builds"
authorLukas Mai <l.mai@web.de>
Mon, 15 Feb 2016 20:17:18 +0000 (21:17 +0100)
committerLukas Mai <l.mai@web.de>
Mon, 15 Feb 2016 20:17:40 +0000 (21:17 +0100)
commit6ea11d8cdaa70c00dfcd58674da3c7f24266bbae
treef280f6d29374f024789c1e18ce743ce63fffdf87
parentfc7d284e21281f09ffa3eff9ee2e2317acbb2d70
Revert "tweak NOT_REACHED in DEBUGGING builds"

This reverts commit 5b48e25f83f62f48ea280c49b00302e063384348.

The above commit breaks win32 builds:

    IO.xs(73) : error C2065: 'my_perl' : undeclared identifier
    IO.xs(73) : error C2223: left of '->IProc' must point to struct/union

where dist/IO/IO.xs contains:

    69: static int
    70: not_here(const char *s)
    71: {
    72:     croak("%s not implemented on this architecture", s);
    73:     NORETURN_FUNCTION_END;
    74: }

and perl.h contains:

    #  define NORETURN_FUNCTION_END NOT_REACHED;
perl.h