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

oliver at apple.com oliver at apple.com
Wed Dec 22 14:29:34 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit b6839286eb345c86d6630aab0c6949a74a4450ed
Author: oliver at apple.com <oliver at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 11 20:28:40 2010 +0000

    Fix interpreter build -- was broken by incorrect merge.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69522 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index ee94c07..5441fc6 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,10 @@
+2010-10-11  Oliver Hunt  <oliver at apple.com>
+
+        Fix interpreter build -- was broken by incorrect merge.
+
+        * interpreter/Interpreter.cpp:
+        (JSC::Interpreter::privateExecute):
+
 2010-10-01  Oliver Hunt  <oliver at apple.com>
 
         Reviewed by Gavin Barraclough.
diff --git a/JavaScriptCore/interpreter/Interpreter.cpp b/JavaScriptCore/interpreter/Interpreter.cpp
index 9689d1a..bbd1925 100644
--- a/JavaScriptCore/interpreter/Interpreter.cpp
+++ b/JavaScriptCore/interpreter/Interpreter.cpp
@@ -4060,9 +4060,9 @@ skip_id_custom_self:
         } else if (JSValue argumentsValue = callFrame->r(unmodifiedArgumentsRegister(arguments)).jsValue())
             asArguments(argumentsValue)->copyRegisters();
 
-        if (JSValue arguments = callFrame->r(unmodifiedArgumentsRegister(src2)).jsValue()) {
+        if (JSValue argumentsValue = callFrame->r(unmodifiedArgumentsRegister(arguments)).jsValue()) {
             if (!codeBlock->isStrictMode())
-                asArguments(arguments)->setActivation(activation);
+                asArguments(argumentsValue)->setActivation(asActivation(activationValue));
         }
 
         vPC += OPCODE_LENGTH(op_tear_off_activation);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list