Skip to content

[gardening] Change some typedef => using. #17411

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions include/swift/SILOptimizer/Analysis/BasicCalleeAnalysis.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include "llvm/Support/Allocator.h"

namespace swift {

class ClassDecl;
class SILFunction;
class SILModule;
Expand Down Expand Up @@ -74,10 +75,9 @@ class CalleeList {
/// any function application site (including those that are simple
/// function_ref, thin_to_thick, or partial_apply callees).
class CalleeCache {
typedef llvm::SmallVector<SILFunction *, 16> Callees;
typedef llvm::PointerIntPair<Callees *, 1> CalleesAndCanCallUnknown;
typedef llvm::DenseMap<SILDeclRef, CalleesAndCanCallUnknown>
CacheType;
using Callees = llvm::SmallVector<SILFunction *, 16>;
using CalleesAndCanCallUnknown = llvm::PointerIntPair<Callees *, 1>;
using CacheType = llvm::DenseMap<SILDeclRef, CalleesAndCanCallUnknown>;

SILModule &M;

Expand Down