Preserve aliases if needed.

llvm-svn: 125439
This commit is contained in:
Rafael Espindola 2011-02-12 18:03:13 +00:00
parent 69affe6a94
commit 8cc5910dbc
1 changed files with 8 additions and 0 deletions

View File

@ -367,6 +367,14 @@ void LTOCodeGenerator::applyScopeRestrictions() {
_mustPreserveSymbols.count(Buffer))
mustPreserveList.push_back(::strdup(v->getNameStr().c_str()));
}
for (Module::alias_iterator a = mergedModule->alias_begin(),
e = mergedModule->alias_end(); a != e; ++a) {
Buffer.clear();
mangler.getNameWithPrefix(Buffer, a, false);
if (!a->isDeclaration() &&
_mustPreserveSymbols.count(Buffer))
mustPreserveList.push_back(::strdup(a->getNameStr().c_str()));
}
passes.add(createInternalizePass(mustPreserveList));
}