Update mclinker with upstream patches
- Pull upstream mclinker changes up to
a7afcb5854708dd0684d7f979af2d9f395b4cbc4
- Update Android.mk in lib/Support and tools/mcld/ to handle the new
option parser.
Change-Id: I3a3aa2ea4c5e2d59caecc8aba3bf3abf087c0986
diff --git a/lib/Object/ObjectLinker.cpp b/lib/Object/ObjectLinker.cpp
index 801cbaf..4d8ffeb 100644
--- a/lib/Object/ObjectLinker.cpp
+++ b/lib/Object/ObjectLinker.cpp
@@ -273,7 +273,7 @@
}
// Identical code folding
- if (m_Config.options().getICFMode() != GeneralOptions::ICF_None) {
+ if (m_Config.options().getICFMode() != GeneralOptions::ICF::None) {
IdenticalCodeFolding icf(m_Config, m_LDBackend, *m_pModule);
icf.foldIdenticalCode();
}