Remove default values that are always overriden in Driver.cpp.

llvm-svn: 253710
This commit is contained in:
Rui Ueyama 2015-11-20 21:00:42 +00:00
parent 01ec64499c
commit 03bec877c5
1 changed files with 3 additions and 3 deletions

View File

@ -64,9 +64,9 @@ struct Configuration {
bool SysvHash = true;
bool Verbose;
bool ZExecStack;
bool ZNodelete = false;
bool ZNow = false;
bool ZOrigin = false;
bool ZNodelete;
bool ZNow;
bool ZOrigin;
ELFKind EKind = ELFNoneKind;
uint16_t EMachine = llvm::ELF::EM_NONE;
uint64_t EntryAddr = -1;