[Webkit-unassigned] [Bug 43089] Cleanup JIT related switched in Platform.h

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 3 14:02:55 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=43089


Chao-ying Fu <fu at mips.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fu at mips.com




--- Comment #4 from Chao-ying Fu <fu at mips.com>  2010-08-03 14:02:55 PST ---
There is a typo in ExecutableAllocator.h for MIPS.  We need to use ! for the macro to test if GCC is < 4.4.3.  Thanks!

Ex:
Index: ExecutableAllocator.h
===================================================================
--- ExecutableAllocator.h       (revision 64473)
+++ ExecutableAllocator.h       (working copy)
@@ -200,7 +200,7 @@
     static void cacheFlush(void* code, size_t size)
     {
 #if COMPILER(GCC) && GCC_VERSION_AT_LEAST(4,3,0)
-#if WTF_MIPS_ISA_REV(2) && GCC_VERSION_AT_LEAST(4,4,3)
+#if WTF_MIPS_ISA_REV(2) && !GCC_VERSION_AT_LEAST(4,4,3)
         int lineSize;
         asm("rdhwr %0, $1" : "=r" (lineSize));
         //

Regards,
Chao-ying

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list