[ELF] Delete unused Configuration::zExecstack after D56554

This commit is contained in:
Fangrui Song 2019-11-25 14:44:01 -08:00
parent 947f969244
commit f0558f582a
2 changed files with 0 additions and 2 deletions

View File

@ -202,7 +202,6 @@ struct Configuration {
bool writeAddends;
bool zCombreloc;
bool zCopyreloc;
bool zExecstack;
bool zGlobal;
bool zHazardplt;
bool zIfuncNoplt;

View File

@ -968,7 +968,6 @@ static void readConfigs(opt::InputArgList &args) {
args.hasFlag(OPT_warn_symbol_ordering, OPT_no_warn_symbol_ordering, true);
config->zCombreloc = getZFlag(args, "combreloc", "nocombreloc", true);
config->zCopyreloc = getZFlag(args, "copyreloc", "nocopyreloc", true);
config->zExecstack = getZFlag(args, "execstack", "noexecstack", false);
config->zGlobal = hasZOption(args, "global");
config->zGnustack = getZGnuStack(args);
config->zHazardplt = hasZOption(args, "hazardplt");