[SCM] WebKit Debian packaging branch, debian/unstable,	updated. debian/1.1.6-1-3-g12c4fa1
    Gustavo Noronha Silva 
    kov at debian.org
       
    Tue May 12 18:02:36 UTC 2009
    
    
  
The following commit has been merged in the debian/unstable branch:
commit 1572f5b5eec092c01b5193581bb22eaaa67b8984
Author: kov at webkit.org <kov at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat May 9 15:44:28 2009 +0000
    2009-05-09  Gustavo Noronha Silva  <gns at gnome.org>
    
            Suggested by Geoffrey Garen.
    
            Assume SSE2 is present on X86-64 and on MAC X86-32. This fixes a
            build breakage on non-Mac X86-64 when JIT is enabled.
    
            * jit/JITArithmetic.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@43439 268f45cc-cd09-0410-ab3c-d52691b4dbfc
    filter-origin: 77bfabd7f71521b134edb1158860677c952aef3a
diff --git a/JavaScriptCore/jit/JITArithmetic.cpp b/JavaScriptCore/jit/JITArithmetic.cpp
index 1b98e73..368c8b5 100644
--- a/JavaScriptCore/jit/JITArithmetic.cpp
+++ b/JavaScriptCore/jit/JITArithmetic.cpp
@@ -44,11 +44,12 @@
 
 using namespace std;
 
-#if PLATFORM(MAC)
+// All X86 Macs are guaranteed to support at least SSE2
+#if PLATFORM(X86_64) || (PLATFORM(X86) && PLATFORM(MAC))
 
 static inline bool isSSE2Present()
 {
-    return true; // All X86 Macs are guaranteed to support at least SSE2
+    return true;
 }
 
 #else
-- 
WebKit Debian packaging
    
    
More information about the Pkg-webkit-commits
mailing list