Add a workaround to avoid wrong code generated by m88k gcc.
authoraoyama <aoyama@openbsd.org>
Fri, 16 Apr 2021 12:05:32 +0000 (12:05 +0000)
committeraoyama <aoyama@openbsd.org>
Fri, 16 Apr 2021 12:05:32 +0000 (12:05 +0000)
commitc3eae84e6d565de469e2141329751fc840bcd25e
treec5ff7e94d4250c52de54bade47b0ec81ea01a307
parentd29970a751b5a800186815487a3ac2350cc46b6a
Add a workaround to avoid wrong code generated by m88k gcc.

NATIVE_TO_UNI is defined as follows in utf8.h:
--
#define NATIVE_TO_UNI(ch)       ((UV) ((ch) | 0))
--
and UV is 'unsigned long' on m88k.

Details are at:
https://github.com/Perl/perl5/issues/18655

help and ok afresh1@
gnu/usr.bin/perl/utf8.h