We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb47bb2 + a26ab97 commit e8de696Copy full SHA for e8de696
lib/SILOptimizer/Mandatory/MandatoryInlining.cpp
@@ -23,10 +23,11 @@
23
#include "llvm/ADT/ImmutableSet.h"
24
#include "llvm/ADT/Statistic.h"
25
#include "llvm/Support/Debug.h"
26
+
27
using namespace swift;
28
-typedef llvm::DenseSet<SILFunction*> DenseFunctionSet;
29
-typedef llvm::ImmutableSet<SILFunction*> ImmutableFunctionSet;
+using DenseFunctionSet = llvm::DenseSet<SILFunction *>;
30
+using ImmutableFunctionSet = llvm::ImmutableSet<SILFunction *>;
31
32
STATISTIC(NumMandatoryInlines,
33
"Number of function application sites inlined by the mandatory "
0 commit comments