Title: [89959] trunk/Source/_javascript_Core
Revision
89959
Author
[email protected]
Date
2011-06-28 14:18:31 -0700 (Tue, 28 Jun 2011)

Log Message

Fix interpreter build.

Modified Paths


Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (89958 => 89959)


--- trunk/Source/_javascript_Core/ChangeLog	2011-06-28 21:13:25 UTC (rev 89958)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-06-28 21:18:31 UTC (rev 89959)
@@ -1,3 +1,10 @@
+2011-06-28  Oliver Hunt  <[email protected]>
+
+        Fix interpreter build.
+
+        * interpreter/Interpreter.cpp:
+        (JSC::Interpreter::privateExecute):
+
 2011-06-28  Gavin Barraclough  <[email protected]>
 
         Reviewed by Oliver Hunt.

Modified: trunk/Source/_javascript_Core/interpreter/Interpreter.cpp (89958 => 89959)


--- trunk/Source/_javascript_Core/interpreter/Interpreter.cpp	2011-06-28 21:13:25 UTC (rev 89958)
+++ trunk/Source/_javascript_Core/interpreter/Interpreter.cpp	2011-06-28 21:18:31 UTC (rev 89959)
@@ -1611,7 +1611,7 @@
         int dst = vPC[1].u.operand;
         int firstArg = vPC[2].u.operand;
         int argCount = vPC[3].u.operand;
-        ArgList args(codeBlock->constantBufferfirstArg), argCount);
+        ArgList args(codeBlock->constantBuffer(firstArg), argCount);
         callFrame->uncheckedR(dst) = JSValue(constructArray(callFrame, args));
         
         vPC += OPCODE_LENGTH(op_new_array);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to