Index: src/IceLoopAnalyzer.h |
diff --git a/src/IceLoopAnalyzer.h b/src/IceLoopAnalyzer.h |
index 19d38d1ccc32369981ea03cbc319058eaeeb1ea8..8932e0868484e6671844bcc4c1870d6d67b2ae3e 100644 |
--- a/src/IceLoopAnalyzer.h |
+++ b/src/IceLoopAnalyzer.h |
@@ -88,9 +88,8 @@ private: |
bool Deleted = false; |
}; |
- using LoopNodeList = std::vector<LoopNode, CfgLocalAllocator<LoopNode>>; |
- using LoopNodePtrList = |
- std::vector<LoopNode *, CfgLocalAllocator<LoopNode *>>; |
+ using LoopNodeList = CfgVector<LoopNode>; |
+ using LoopNodePtrList = CfgVector<LoopNode *>; |
/// Process the node as part as part of Tarjan's algorithm and return either a |
/// node to recurse into or nullptr when the node has been fully processed. |