Changeset 121382 in webkit for trunk/Source/JavaScriptCore/dfg/DFGGraph.cpp
- Timestamp:
- Jun 27, 2012, 4:16:10 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGGraph.cpp
r120834 r121382 328 328 } 329 329 dataLog("%s Phi Nodes:", prefix); 330 unsigned count = 0;331 330 for (size_t i = 0; i < block->phis.size(); ++i) { 332 331 NodeIndex phiNodeIndex = block->phis[i]; … … 334 333 if (!phiNode.shouldGenerate() && phiNodeDumpMode == DumpLivePhisOnly) 335 334 continue; 336 if (!((++count) % 4))337 dataLog("\n%s ", prefix);338 335 dataLog(" @%u->(", phiNodeIndex); 339 336 if (phiNode.child1()) {
Note:
See TracChangeset
for help on using the changeset viewer.