Remove name mutators for SILFunction and SILGlobalVariable.

Swift SVN r11963
This commit is contained in:
John McCall
2014-01-06 23:32:52 +00:00
parent 708d797e1f
commit cca5fb3bc0
4 changed files with 17 additions and 28 deletions

View File

@@ -124,12 +124,7 @@ public:
}
StringRef getName() const { return Name; }
void setName(StringRef N) {
Name = N;
}
std::string &getMutableName() { return Name; }
/// True if this is a declaration of a function defined in another module.
bool isExternalDeclaration() const { return BlockList.empty(); }