Skip to content

Commit 834558e

Browse files
committed
[Gardening] Improved variable name.
1 parent 704133c commit 834558e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/SILOptimizer/Utils/ShrinkBorrowScope.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ bool ShrinkBorrowScope::populateUsers() {
208208
// scope.
209209
return false;
210210
}
211-
for (auto *usePoint : usePoints) {
212-
auto *user = usePoint->getUser();
211+
for (auto *use : uses) {
212+
auto *user = use->getUser();
213213
users.insert(user);
214214
if (auto apply = ApplySite::isa(user)) {
215215
++transitiveUsesPerApplySite[apply];

0 commit comments

Comments
 (0)