Skip to content

Commit c68a976

Browse files
committed
[send-non-sendable] Change a set::set to be an llvm::DenseSet.
1 parent 74c71b8 commit c68a976

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SILOptimizer/Mandatory/SendNonSendable.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ class PartitionOpTranslator {
175175
// but at what points in function flow they do, this would be more
176176
// permissive, but I'm avoiding implementing it in case existing
177177
// utilities would make it easier than handrolling
178-
std::set<SILValue> capturedUIValues;
178+
llvm::DenseSet<SILValue> capturedUIValues;
179179

180180
TrackableSILValue getTrackableSILValue(SILValue value) const {
181181
value = getUnderlyingTrackedValue(value);

0 commit comments

Comments
 (0)