diff options
author | Rui Ueyama <ruiu@google.com> | 2016-03-11 18:56:05 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-03-11 18:56:05 +0000 |
commit | 6b074f5c9f873f1880fbbd00109253e530587073 (patch) | |
tree | f968b28fb12efb51f2d810dc7ebeed4017ddf20a | |
parent | f39a70cf32b2be7fa9fc080af7ea137e16200a85 (diff) | |
download | bcm5719-llvm-6b074f5c9f873f1880fbbd00109253e530587073.tar.gz bcm5719-llvm-6b074f5c9f873f1880fbbd00109253e530587073.zip |
Fix MSVC build.
llvm-svn: 263277
-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 a3c24bf4c6b..7d145964e09 100644 --- a/lld/ELF/Writer.cpp +++ b/lld/ELF/Writer.cpp @@ -307,7 +307,7 @@ void Writer<ELFT>::scanRelocs( InputSectionBase<ELFT> &C, iterator_range<const Elf_Rel_Impl<ELFT, isRela> *> Rels) { typedef Elf_Rel_Impl<ELFT, isRela> RelType; - const ObjectFile<ELFT> &File = *C.getFile(); + const elf::ObjectFile<ELFT> &File = *C.getFile(); for (const RelType &RI : Rels) { uint32_t SymIndex = RI.getSymbol(Config->Mips64EL); SymbolBody &OrigBody = File.getSymbolBody(SymIndex); |