Title: [124497] trunk/Source/_javascript_Core
- Revision
- 124497
- Author
- [email protected]
- Date
- 2012-08-02 14:10:43 -0700 (Thu, 02 Aug 2012)
Log Message
Unreviewed, build fix for DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE).
* dfg/DFGStructureCheckHoistingPhase.cpp:
(JSC::DFG::StructureCheckHoistingPhase::run):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (124496 => 124497)
--- trunk/Source/_javascript_Core/ChangeLog 2012-08-02 21:06:06 UTC (rev 124496)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-08-02 21:10:43 UTC (rev 124497)
@@ -1,3 +1,10 @@
+2012-08-02 Filip Pizlo <[email protected]>
+
+ Unreviewed, build fix for DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE).
+
+ * dfg/DFGStructureCheckHoistingPhase.cpp:
+ (JSC::DFG::StructureCheckHoistingPhase::run):
+
2012-08-01 Mark Hahnenberg <[email protected]>
Remove all uses of ClassInfo for JSStrings in JIT code
Modified: trunk/Source/_javascript_Core/dfg/DFGStructureCheckHoistingPhase.cpp (124496 => 124497)
--- trunk/Source/_javascript_Core/dfg/DFGStructureCheckHoistingPhase.cpp 2012-08-02 21:06:06 UTC (rev 124496)
+++ trunk/Source/_javascript_Core/dfg/DFGStructureCheckHoistingPhase.cpp 2012-08-02 21:10:43 UTC (rev 124497)
@@ -284,7 +284,7 @@
dataLog("Not hoisting checks for %s because of heuristics.\n", m_graph.nameOfVariableAccessData(it->first));
continue;
}
- if (iter->second.m_isClobbered && !iter->second.m_structure->transitionWatchpointSetIsStillValid()) {
+ if (it->second.m_isClobbered && !it->second.m_structure->transitionWatchpointSetIsStillValid()) {
dataLog("Not hoisting checks for %s because the structure is clobbered and has an invalid watchpoint set.\n", m_graph.nameOfVariableAccessData(it->first));
continue;
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes