[Mangler] Move the SILMangler out of the AST Mangler namespace.

This commit is contained in:
Nadav Rotem
2015-12-22 16:41:30 -08:00
parent b3fe53cff9
commit a981c80571
8 changed files with 15 additions and 15 deletions

View File

@@ -71,8 +71,8 @@ static llvm::SmallString<64> getClonedName(PartialApplyInst *PAI,
llvm::raw_svector_ostream buffer(ClonedName);
Mangle::Mangler M(buffer);
auto P = Mangle::SpecializationPass::CapturePropagation;
Mangle::FunctionSignatureSpecializationMangler Mangler(P, M, F);
auto P = SpecializationPass::CapturePropagation;
FunctionSignatureSpecializationMangler Mangler(P, M, F);
// We know that all arguments are literal insts.
auto Args = PAI->getArguments();