File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -552,13 +552,13 @@ class CallsiteContextGraph {
552
552
const DenseSet<uint32_t > &AllocContextIds);
553
553
554
554
// / Map from each context ID to the AllocationType assigned to that context.
555
- std::map <uint32_t , AllocationType> ContextIdToAllocationType;
555
+ DenseMap <uint32_t , AllocationType> ContextIdToAllocationType;
556
556
557
557
// / Identifies the context node created for a stack id when adding the MIB
558
558
// / contexts to the graph. This is used to locate the context nodes when
559
559
// / trying to assign the corresponding callsites with those stack ids to these
560
560
// / nodes.
561
- std::map <uint64_t , ContextNode *> StackEntryIdToContextNodeMap;
561
+ DenseMap <uint64_t , ContextNode *> StackEntryIdToContextNodeMap;
562
562
563
563
// / Maps to track the calls to their corresponding nodes in the graph.
564
564
MapVector<CallInfo, ContextNode *> AllocationCallToContextNodeMap;
You can’t perform that action at this time.
0 commit comments