SIL: Rename SILFunction::getMangledName to SILFunction::getName.

Swift SVN r6430
This commit is contained in:
Joe Groff
2013-07-21 18:39:51 +00:00
parent 59c7fa881c
commit 1984cf41e0
8 changed files with 15 additions and 15 deletions

View File

@@ -16,7 +16,7 @@ using namespace swift;
SILFunction::SILFunction(SILModule &Module, SILLinkage Linkage,
StringRef Name, SILType LoweredType)
: ModuleAndLinkage(&Module, Linkage), MangledName(Name),
: ModuleAndLinkage(&Module, Linkage), Name(Name),
LoweredType(LoweredType), DebugScope(nullptr) {
Module.functions.push_back(this);
}