Changeset 160344 in webkit for trunk/Source/JavaScriptCore/dfg/DFGCSEPhase.cpp
- Timestamp:
- Dec 9, 2013, 5:28:05 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGCSEPhase.cpp
r160328 r160344 33 33 #include "DFGPhase.h" 34 34 #include "JSCellInlines.h" 35 #include <array> 35 36 #include <wtf/FastBitVector.h> 36 37 … … 1411 1412 Node* m_currentNode; 1412 1413 unsigned m_indexInBlock; 1413 FixedArray<unsigned, LastNodeType> m_lastSeen;1414 std::array<unsigned, LastNodeType> m_lastSeen; 1414 1415 bool m_changed; // Only tracks changes that have a substantive effect on other optimizations. 1415 1416 };
Note:
See TracChangeset
for help on using the changeset viewer.