Fixed check-lld msan after r274504 "[ELF] - Implemented --fatal-warnings option."

Bot failed:
http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-fast/builds/14361/steps/check-lld%20msan/logs/stdio

Fix:
Initialize Config->FatalWarnings with false. As it might be used once a bit earlier than its
initialization from command line arguments.

llvm-svn: 274507
This commit is contained in:
George Rimar 2016-07-04 14:54:23 +00:00
parent 02d435d2f4
commit 5e37aeaf6a
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ struct Configuration {
bool EhFrameHdr;
bool EnableNewDtags;
bool ExportDynamic;
bool FatalWarnings;
bool FatalWarnings = false;
bool GcSections;
bool GnuHash = false;
bool ICF;