Title: [126990] trunk/Source/_javascript_Core
- Revision
- 126990
- Author
- [email protected]
- Date
- 2012-08-29 04:54:26 -0700 (Wed, 29 Aug 2012)
Log Message
Unreviewed. Build fix for !ENABLE(JIT) after r126962.
* interpreter/Interpreter.cpp:
(JSC::Interpreter::privateExecute):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (126989 => 126990)
--- trunk/Source/_javascript_Core/ChangeLog 2012-08-29 11:53:19 UTC (rev 126989)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-08-29 11:54:26 UTC (rev 126990)
@@ -1,3 +1,10 @@
+2012-08-29 Patrick Gansterer <[email protected]>
+
+ Unreviewed. Build fix for !ENABLE(JIT) after r126962.
+
+ * interpreter/Interpreter.cpp:
+ (JSC::Interpreter::privateExecute):
+
2012-08-28 Geoffrey Garen <[email protected]>
Added JSScope::objectInScope(), and refactored callers to use it
Modified: trunk/Source/_javascript_Core/interpreter/Interpreter.cpp (126989 => 126990)
--- trunk/Source/_javascript_Core/interpreter/Interpreter.cpp 2012-08-29 11:53:19 UTC (rev 126989)
+++ trunk/Source/_javascript_Core/interpreter/Interpreter.cpp 2012-08-29 11:54:26 UTC (rev 126990)
@@ -2707,7 +2707,7 @@
ASSERT_UNUSED(end, iter != end);
}
ASSERT((*iter)->isVariableObject());
- JSVariableObject* scope = jsCast<JSVariableObject*>(iter->get());
+ JSVariableObject* scope = jsCast<JSVariableObject*>(iter.get());
callFrame->uncheckedR(dst) = scope->registerAt(index).get();
ASSERT(callFrame->r(dst).jsValue());
vPC += OPCODE_LENGTH(op_get_scoped_var);
@@ -2738,7 +2738,7 @@
}
ASSERT((*iter)->isVariableObject());
- JSVariableObject* scope = jsCast<JSVariableObject*>(iter->get());
+ JSVariableObject* scope = jsCast<JSVariableObject*>(iter.get());
ASSERT(callFrame->r(value).jsValue());
scope->registerAt(index).set(*globalData, scope, callFrame->r(value).jsValue());
vPC += OPCODE_LENGTH(op_put_scoped_var);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes