Title: [127213] trunk/Source/_javascript_Core
- Revision
- 127213
- Author
- [email protected]
- Date
- 2012-08-30 16:49:37 -0700 (Thu, 30 Aug 2012)
Log Message
Fix the Qt build: Removed a now-dead variable.
* interpreter/Interpreter.cpp:
(JSC::Interpreter::execute):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (127212 => 127213)
--- trunk/Source/_javascript_Core/ChangeLog 2012-08-30 23:41:29 UTC (rev 127212)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-08-30 23:49:37 UTC (rev 127213)
@@ -1,3 +1,10 @@
+2012-08-30 Geoffrey Garen <[email protected]>
+
+ Fix the Qt build: Removed a now-dead variable.
+
+ * interpreter/Interpreter.cpp:
+ (JSC::Interpreter::execute):
+
2012-08-30 Benjamin Poulain <[email protected]>
Ambiguous operator[] after r127191 on some compiler
Modified: trunk/Source/_javascript_Core/interpreter/Interpreter.cpp (127212 => 127213)
--- trunk/Source/_javascript_Core/interpreter/Interpreter.cpp 2012-08-30 23:41:29 UTC (rev 127212)
+++ trunk/Source/_javascript_Core/interpreter/Interpreter.cpp 2012-08-30 23:49:37 UTC (rev 127213)
@@ -1307,12 +1307,10 @@
unsigned numVariables = codeBlock->numVariables();
int numFunctions = codeBlock->numberOfFunctionDecls();
- bool pushedScope = false;
if (numVariables || numFunctions) {
if (codeBlock->isStrictMode()) {
scope = StrictEvalActivation::create(callFrame);
variableObject = scope;
- pushedScope = true;
}
// Scope for BatchedTransitionOptimizer
BatchedTransitionOptimizer optimizer(callFrame->globalData(), variableObject);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes