diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2017-07-26 19:57:40 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2017-07-26 19:57:40 +0000 |
| commit | aaa8e433ad1b7e1cde458085bd8eb945445b20c8 (patch) | |
| tree | 8f66d04e03cf4ac3b194e4b5efcee273eb4610d4 | |
| parent | b4b485370cd831cf7672a3e3c9f2483c7ac2b28f (diff) | |
| download | bcm5719-llvm-aaa8e433ad1b7e1cde458085bd8eb945445b20c8.tar.gz bcm5719-llvm-aaa8e433ad1b7e1cde458085bd8eb945445b20c8.zip | |
Try to fix the windows build.
llvm-svn: 309162
| -rw-r--r-- | lld/ELF/Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp index ef3caa3f7fc..64cec1441cb 100644 --- a/lld/ELF/Writer.cpp +++ b/lld/ELF/Writer.cpp @@ -893,7 +893,7 @@ template <class ELFT> static void sortBySymbolsOrder() { // Build a map from sections to their priorities. DenseMap<SectionBase *, int> SectionOrder; - for (elf::ObjectFile<ELFT> *File : ObjectFile<ELFT>::Instances) { + for (elf::ObjectFile<ELFT> *File : elf::ObjectFile<ELFT>::Instances) { for (SymbolBody *Body : File->getSymbols()) { auto *D = dyn_cast<DefinedRegular>(Body); if (!D || !D->Section) |

