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

xan at webkit.org xan at webkit.org
Wed Dec 22 14:42:36 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit f1332b5df5fa0b4246e194a7b23bc8d30c9cb66c
Author: xan at webkit.org <xan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 18 07:39:45 2010 +0000

    2010-10-18  Xan Lopez  <xlopez at igalia.com>
    
            Reviewed by Csaba Osztrogonác.
    
            Build broken with JIT disabled
            https://bugs.webkit.org/show_bug.cgi?id=47801
    
            This is a regression caused by r69940.
    
            * interpreter/Interpreter.cpp:
            (JSC::Interpreter::resolveBase):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69944 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 86061ec..9d1266a 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-18  Xan Lopez  <xlopez at igalia.com>
+
+        Reviewed by Csaba Osztrogonác.
+
+        Build broken with JIT disabled
+        https://bugs.webkit.org/show_bug.cgi?id=47801
+
+        This is a regression caused by r69940.
+
+        * interpreter/Interpreter.cpp:
+        (JSC::Interpreter::resolveBase):
+
 2010-10-18  Zoltan Horvath  <zoltan at webkit.org>
 
         Reviewed by Darin Adler.
diff --git a/JavaScriptCore/interpreter/Interpreter.cpp b/JavaScriptCore/interpreter/Interpreter.cpp
index 14204ce..2877565 100644
--- a/JavaScriptCore/interpreter/Interpreter.cpp
+++ b/JavaScriptCore/interpreter/Interpreter.cpp
@@ -281,7 +281,7 @@ NEVER_INLINE void Interpreter::resolveBase(CallFrame* callFrame, Instruction* vP
     int dst = vPC[1].u.operand;
     int property = vPC[2].u.operand;
     bool isStrictPut = vPC[3].u.operand;
-    const Identifier ident = callFrame->codeBlock()->identifier(property);
+    Identifier ident = callFrame->codeBlock()->identifier(property);
     JSValue result = JSC::resolveBase(callFrame, ident, callFrame->scopeChain(), isStrictPut);
     if (!result) {
         callFrame->r(dst) = result;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list