Revert "Allow undefined symbols in shared library by default."

This reverts commit r234378 because it broke buildbots.

llvm-svn: 234414
This commit is contained in:
Rui Ueyama 2015-04-08 16:55:03 +00:00
parent 0f712d04f2
commit e3efa415de
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ LinkingContext::LinkingContext()
_warnIfCoalesableAtomsHaveDifferentCanBeNull(false),
_warnIfCoalesableAtomsHaveDifferentLoadName(false),
_printRemainingUndefines(true), _allowRemainingUndefines(false),
_logInputFiles(false), _allowShlibUndefines(true),
_logInputFiles(false), _allowShlibUndefines(false),
_outputFileType(OutputFileType::Default), _nextOrdinal(0) {}
LinkingContext::~LinkingContext() {}