File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
include/swift/SILOptimizer/Analysis Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 25
25
#include " llvm/Support/Allocator.h"
26
26
27
27
namespace swift {
28
+
28
29
class ClassDecl ;
29
30
class SILFunction ;
30
31
class SILModule ;
@@ -74,10 +75,9 @@ class CalleeList {
74
75
// / any function application site (including those that are simple
75
76
// / function_ref, thin_to_thick, or partial_apply callees).
76
77
class CalleeCache {
77
- typedef llvm::SmallVector<SILFunction *, 16 > Callees;
78
- typedef llvm::PointerIntPair<Callees *, 1 > CalleesAndCanCallUnknown;
79
- typedef llvm::DenseMap<SILDeclRef, CalleesAndCanCallUnknown>
80
- CacheType;
78
+ using Callees = llvm::SmallVector<SILFunction *, 16 >;
79
+ using CalleesAndCanCallUnknown = llvm::PointerIntPair<Callees *, 1 >;
80
+ using CacheType = llvm::DenseMap<SILDeclRef, CalleesAndCanCallUnknown>;
81
81
82
82
SILModule &M;
83
83
You can’t perform that action at this time.
0 commit comments