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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 14:25:01 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 8d7af7721314cd198b0a78abedf2104184fc85e7
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 8 03:16:48 2010 +0000

    2010-10-07  David Goodwin  <david_goodwin at apple.com>
    
            Reviewed by Oliver Hunt.
    
            ARM JIT generates undefined operations due to partially uninitialized ShiftTypeAndAmount
            https://bugs.webkit.org/show_bug.cgi?id=47356
    
            * assembler/ARMv7Assembler.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69372 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index b9c9f90..a0b4787 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-10-07  David Goodwin  <david_goodwin at apple.com>
+
+        Reviewed by Oliver Hunt.
+
+        ARM JIT generates undefined operations due to partially uninitialized ShiftTypeAndAmount
+        https://bugs.webkit.org/show_bug.cgi?id=47356
+
+        * assembler/ARMv7Assembler.h:
+
 2010-10-06  Chris Evans  <cevans at google.com>
 
         Reviewed by David Levin.
diff --git a/JavaScriptCore/assembler/ARMv7Assembler.h b/JavaScriptCore/assembler/ARMv7Assembler.h
index 4dbc9af..b920e3c 100644
--- a/JavaScriptCore/assembler/ARMv7Assembler.h
+++ b/JavaScriptCore/assembler/ARMv7Assembler.h
@@ -440,7 +440,7 @@ private:
         };
         struct {
             unsigned type   : 2;
-            unsigned amount : 5;
+            unsigned amount : 6;
         };
     } m_u;
 };

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list