CVSROOT: /cvs Module name: src Changes by: [email protected] 2021/04/16 06:05:32
Modified files:
gnu/usr.bin/perl: utf8.h
Log message:
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@
