@@ -791,9 +791,9 @@ ReabstractionInfo::createSubstitutedType(SILFunction *OrigF,
791
791
// / on the ReabstractionInfo.
792
792
CanSILFunctionType ReabstractionInfo::
793
793
createSpecializedType (CanSILFunctionType SubstFTy, SILModule &M) const {
794
- llvm:: SmallVector<SILResultInfo, 8 > SpecializedResults;
795
- llvm:: SmallVector<SILYieldInfo, 8 > SpecializedYields;
796
- llvm:: SmallVector<SILParameterInfo, 8 > SpecializedParams;
794
+ SmallVector<SILResultInfo, 8 > SpecializedResults;
795
+ SmallVector<SILYieldInfo, 8 > SpecializedYields;
796
+ SmallVector<SILParameterInfo, 8 > SpecializedParams;
797
797
798
798
unsigned IndirectResultIdx = 0 ;
799
799
for (SILResultInfo RI : SubstFTy->getResults ()) {
@@ -918,7 +918,7 @@ static bool hasNonSelfContainedRequirements(ArchetypeType *Archetype,
918
918
// we should return true.
919
919
auto First = Req.getFirstType ()->getCanonicalType ();
920
920
auto Second = Req.getSecondType ()->getCanonicalType ();
921
- llvm:: SmallSetVector<TypeBase *, 2 > UsedGenericParams;
921
+ SmallSetVector<TypeBase *, 2 > UsedGenericParams;
922
922
First.visit ([&](Type Ty) {
923
923
if (auto *GP = Ty->getAs <GenericTypeParamType>()) {
924
924
UsedGenericParams.insert (GP);
@@ -969,7 +969,7 @@ static void collectRequirements(ArchetypeType *Archetype, GenericSignature Sig,
969
969
// we should return true.
970
970
auto First = Req.getFirstType ()->getCanonicalType ();
971
971
auto Second = Req.getSecondType ()->getCanonicalType ();
972
- llvm:: SmallSetVector<GenericTypeParamType *, 2 > UsedGenericParams;
972
+ SmallSetVector<GenericTypeParamType *, 2 > UsedGenericParams;
973
973
First.visit ([&](Type Ty) {
974
974
if (auto *GP = Ty->getAs <GenericTypeParamType>()) {
975
975
UsedGenericParams.insert (GP);
@@ -2310,7 +2310,7 @@ static bool createPrespecializations(ApplySite Apply, SILFunction *ProxyFunc,
2310
2310
void swift::trySpecializeApplyOfGeneric (
2311
2311
SILOptFunctionBuilder &FuncBuilder,
2312
2312
ApplySite Apply, DeadInstructionSet &DeadApplies,
2313
- llvm:: SmallVectorImpl<SILFunction *> &NewFunctions,
2313
+ SmallVectorImpl<SILFunction *> &NewFunctions,
2314
2314
OptRemark::Emitter &ORE) {
2315
2315
assert (Apply.hasSubstitutions () && " Expected an apply with substitutions!" );
2316
2316
auto *F = Apply.getFunction ();
0 commit comments