forked from OSchip/llvm-project
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:
parent
02d435d2f4
commit
5e37aeaf6a
|
|
@ -81,7 +81,7 @@ struct Configuration {
|
||||||
bool EhFrameHdr;
|
bool EhFrameHdr;
|
||||||
bool EnableNewDtags;
|
bool EnableNewDtags;
|
||||||
bool ExportDynamic;
|
bool ExportDynamic;
|
||||||
bool FatalWarnings;
|
bool FatalWarnings = false;
|
||||||
bool GcSections;
|
bool GcSections;
|
||||||
bool GnuHash = false;
|
bool GnuHash = false;
|
||||||
bool ICF;
|
bool ICF;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue