Skip to content

Commit e8de696

Browse files
authored
Merge pull request #11841 from gottesmm/pr-cf9ce4cd3dda8fb04dc59ae456c2b4872109c7a7
2 parents eb47bb2 + a26ab97 commit e8de696

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/SILOptimizer/Mandatory/MandatoryInlining.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@
2323
#include "llvm/ADT/ImmutableSet.h"
2424
#include "llvm/ADT/Statistic.h"
2525
#include "llvm/Support/Debug.h"
26+
2627
using namespace swift;
2728

28-
typedef llvm::DenseSet<SILFunction*> DenseFunctionSet;
29-
typedef llvm::ImmutableSet<SILFunction*> ImmutableFunctionSet;
29+
using DenseFunctionSet = llvm::DenseSet<SILFunction *>;
30+
using ImmutableFunctionSet = llvm::ImmutableSet<SILFunction *>;
3031

3132
STATISTIC(NumMandatoryInlines,
3233
"Number of function application sites inlined by the mandatory "

0 commit comments

Comments
 (0)