remove calls to dead methods.

llvm-svn: 93657
This commit is contained in:
Chris Lattner 2010-01-16 21:20:34 +00:00
parent 1376b02a17
commit 2ce863be1c
1 changed files with 0 additions and 8 deletions

View File

@ -440,14 +440,6 @@ void LTOModule::lazyParseSymbols()
// Use mangler to add GlobalPrefix to names to match linker names.
Mangler mangler(*_module, _target->getMCAsmInfo()->getGlobalPrefix());
// add chars used in ObjC method names so method names aren't mangled
mangler.markCharAcceptable('[');
mangler.markCharAcceptable(']');
mangler.markCharAcceptable('(');
mangler.markCharAcceptable(')');
mangler.markCharAcceptable('-');
mangler.markCharAcceptable('+');
mangler.markCharAcceptable(' ');
// add functions
for (Module::iterator f = _module->begin(); f != _module->end(); ++f) {