G65816: fixed operation on PowerPC Linux where char is unsigned [R. Belmont, billb]

This commit is contained in:
R. Belmont 2011-02-07 01:05:39 +00:00
parent ebffa2ee9c
commit 7a3d9310ee

View file

@ -40,7 +40,7 @@
/* Allow for architectures that don't have 8-bit sizes */
#if UCHAR_MAX == 0xff
#define int8 char
#define int8 signed char
#define MAKE_INT_8(A) (int8)((A)&0xff)
#else
#define int8 int