[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

barraclough at apple.com barraclough at apple.com
Wed Dec 22 11:41:53 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 50a9f373d302ad0f404ee4ee39277cc1c2799f5a
Author: barraclough at apple.com <barraclough at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 4 02:54:12 2010 +0000

    Fix following https://bugs.webkit.org/show_bug.cgi?id=43089
    (accidentally inverted a compiler version check).
    
    Patch by Chao-ying Fu <fu at mips.com> on 2010-08-03
    Reviewed by Gavin Barraclough.
    
    * jit/ExecutableAllocator.h:
    (JSC::ExecutableAllocator::cacheFlush):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64619 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 040f74f..9556151 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-08-03  Chao-ying Fu  <fu at mips.com>
+
+        Reviewed by Gavin Barraclough.
+
+        Fix following https://bugs.webkit.org/show_bug.cgi?id=43089
+        (accidentally inverted a compiler version check).
+
+        * jit/ExecutableAllocator.h:
+        (JSC::ExecutableAllocator::cacheFlush):
+
 2010-08-03  Patrick Gansterer  <paroga at paroga.com>
 
         Reviewed by Gavin Barraclough.
diff --git a/JavaScriptCore/jit/ExecutableAllocator.h b/JavaScriptCore/jit/ExecutableAllocator.h
index 3a2317c..be4f9c7 100644
--- a/JavaScriptCore/jit/ExecutableAllocator.h
+++ b/JavaScriptCore/jit/ExecutableAllocator.h
@@ -200,7 +200,7 @@ public:
     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));
         //

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list