On 19 Dec 2004 at 3:01, Frank Heckenbach wrote:
I have uploaded a new beta version of GPC to http://www.gnu-pascal.de!
[...]
I have built it for Mingw on the gcc-3.3.5 sources. The patch for gcc- 3.3.4 seems okay but for one "rej" in emit-rtl.c (attached). It doesn't seem to have resulted in any obvious problem, but then I wouldn't really know - so I am attaching the rej file in case there is something serious there.
Best regards, The Chief -------- Prof. Abimbola A. Olowofoyeku (The African Chief) web: http://www.greatchief.plus.com/
*************** *** 301,309 **** if (alias == 0 && expr == 0 && offset == 0 && (size == 0 || (mode != BLKmode && GET_MODE_SIZE (mode) == INTVAL (size))) && (align == BITS_PER_UNIT || (STRICT_ALIGNMENT && mode != BLKmode && align == GET_MODE_ALIGNMENT (mode)))) return 0;
attrs.alias = alias; --- 301,313 ---- if (alias == 0 && expr == 0 && offset == 0 && (size == 0 || (mode != BLKmode && GET_MODE_SIZE (mode) == INTVAL (size))) + #ifndef GPC && (align == BITS_PER_UNIT || (STRICT_ALIGNMENT && mode != BLKmode && align == GET_MODE_ALIGNMENT (mode)))) + #else + && (align == MEM_ALIGN0 (mode))) + #endif return 0;
attrs.alias = alias;