diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-01-13 22:34:21 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-01-13 22:34:21 -0800 |
commit | 31cdb61fca6b4f8d02971b6cc47d80445117e18e (patch) | |
tree | d86a27cf2b9405f00fdca9b194a2a8f029072967 /hv.c | |
parent | 8d85448a83211e0f03a3927c81a3f881a046d233 (diff) | |
download | perl-31cdb61fca6b4f8d02971b6cc47d80445117e18e.tar.gz |
Use NOT_REACHED in one spot in hv.c
This reduces the size of hv.o by 32 bytes under clang.
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1638,7 +1638,7 @@ S_clear_placeholders(pTHX_ HV *hv, U32 items) } while (--i >= 0); /* You can't get here, hence assertion should always fail. */ assert (items == 0); - assert (0); + NOT_REACHED; } STATIC void |