https://bugzilla.novell.com/show_bug.cgi?id=324134

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=324134#c34





--- Comment #34 from Olaf Hering <[EMAIL PROTECTED]>  2008-08-07 07:08:45 MDT 
---
Maybe you are right. Its just confusing to see a mix of __ppc__, __powerpc__,
__ppc64__ etc.

I'm working with 1.9.1 for the time being.

There is a bug in mono/mini/mini-ppc.c:mono_arch_flush_icache(), the pointer is
truncated. Something like this is needed:

-       start = (guint8*)((guint32)start & ~(cachelinesize - 1));
+       start = (guint8*)((unsigned long)start & ~(cachelinesize - 1));


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to