Displaying 1 result from an estimated 1 matches for "1534c7e".
Did you mean:
1534,7
2017 Jun 15
7
[RFC] Profile guided section layout
...ition;
bool AsNeeded = false;
bool Bsymbolic;
@@ -124,6 +127,7 @@ struct Configuration {
bool GnuHash;
bool ICF;
bool MipsN32Abi = false;
+ bool NoCFGProfileReorder;
bool NoGnuUnique;
bool NoUndefinedVersion;
bool Nostdlib;
diff --git a/ELF/Driver.cpp b/ELF/Driver.cpp
index 1534c7e..06dd045 100644
--- a/ELF/Driver.cpp
+++ b/ELF/Driver.cpp
@@ -649,6 +649,7 @@ void LinkerDriver::readConfigs(opt::InputArgList &Args) {
Config->LTOO = getInteger(Args, OPT_lto_O, 2);
Config->LTOPartitions = getInteger(Args, OPT_lto_partitions, 1);
Config->MapFile = getString(A...