Changeset 64619 in webkit


Ignore:
Timestamp:
Aug 3, 2010 7:54:12 PM (14 years ago)
Author:
barraclough@apple.com
Message:

Fix following https://bugs.webkit.org/show_bug.cgi?id=43089
(accidentally inverted a compiler version check).

Patch by Chao-ying Fu <fu@mips.com> on 2010-08-03
Reviewed by Gavin Barraclough.

  • jit/ExecutableAllocator.h:

(JSC::ExecutableAllocator::cacheFlush):

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r64618 r64619  
     12010-08-03  Chao-ying Fu  <fu@mips.com>
     2
     3        Reviewed by Gavin Barraclough.
     4
     5        Fix following https://bugs.webkit.org/show_bug.cgi?id=43089
     6        (accidentally inverted a compiler version check).
     7
     8        * jit/ExecutableAllocator.h:
     9        (JSC::ExecutableAllocator::cacheFlush):
     10
    1112010-08-03  Patrick Gansterer  <paroga@paroga.com>
    212
  • trunk/JavaScriptCore/jit/ExecutableAllocator.h

    r64608 r64619  
    201201    {
    202202#if COMPILER(GCC) && GCC_VERSION_AT_LEAST(4,3,0)
    203 #if WTF_MIPS_ISA_REV(2) && GCC_VERSION_AT_LEAST(4,4,3)
     203#if WTF_MIPS_ISA_REV(2) && !GCC_VERSION_AT_LEAST(4,4,3)
    204204        int lineSize;
    205205        asm("rdhwr %0, $1" : "=r" (lineSize));
Note: See TracChangeset for help on using the changeset viewer.