Revert the 'EnableInitializing' flag. There is debate on whether we should run that pass by default in LTO.

llvm-svn: 154356
This commit is contained in:
Bill Wendling 2012-04-09 23:16:51 +00:00
parent c1422c1d31
commit b5cedde66d
1 changed files with 0 additions and 11 deletions

View File

@ -46,9 +46,6 @@
#include "llvm/ADT/StringExtras.h"
using namespace llvm;
static cl::opt<bool> EnableInternalizing("enable-internalizing", cl::init(false),
cl::desc("Internalize functions during LTO"));
static cl::opt<bool> DisableInline("disable-inlining", cl::init(false),
cl::desc("Do not run the inliner pass"));
@ -278,14 +275,6 @@ static void findUsedValues(GlobalVariable *LLVMUsed,
}
void LTOCodeGenerator::applyScopeRestrictions() {
// Internalize only if specifically asked for. Otherwise, global symbols which
// exist in the final image, but which are used outside of that image
// (e.g. bundling) may be removed. This also happens when a function is used
// only in inline asm. LLVM doesn't recognize that as a "use", so it could be
// stripped.
if (!EnableInternalizing)
return;
if (_scopeRestrictionsDone) return;
Module *mergedModule = _linker.getModule();