diff options
| author | Rui Ueyama <ruiu@google.com> | 2016-11-02 19:51:41 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2016-11-02 19:51:41 +0000 |
| commit | 7463adadbf0ab2742b122a3d4adc8e2041c3ac01 (patch) | |
| tree | 73ee61846fa7dffe98a5717b330af5f9943a9e93 /lld/ELF/InputFiles.cpp | |
| parent | 5a0e92b04c666a7838ccb1acfa844dc17e7b55b2 (diff) | |
| download | bcm5719-llvm-7463adadbf0ab2742b122a3d4adc8e2041c3ac01.tar.gz bcm5719-llvm-7463adadbf0ab2742b122a3d4adc8e2041c3ac01.zip | |
Fix Windows buildbot.
llvm-svn: 285854
Diffstat (limited to 'lld/ELF/InputFiles.cpp')
| -rw-r--r-- | lld/ELF/InputFiles.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lld/ELF/InputFiles.cpp b/lld/ELF/InputFiles.cpp index a1ebf748a1e..3e55dbb4655 100644 --- a/lld/ELF/InputFiles.cpp +++ b/lld/ELF/InputFiles.cpp @@ -52,7 +52,7 @@ public: }; } -template <class ELFT> void ObjectFile<ELFT>::initializeDwarfLine() { +template <class ELFT> void elf::ObjectFile<ELFT>::initializeDwarfLine() { std::unique_ptr<object::ObjectFile> Obj = check(object::ObjectFile::createObjectFile(this->MB), "createObjectFile failed"); @@ -73,8 +73,8 @@ template <class ELFT> void ObjectFile<ELFT>::initializeDwarfLine() { // Returns source line information for a given offset // using DWARF debug info. template <class ELFT> -std::string ObjectFile<ELFT>::getLineInfo(InputSectionBase<ELFT> *S, - uintX_t Offset) { +std::string elf::ObjectFile<ELFT>::getLineInfo(InputSectionBase<ELFT> *S, + uintX_t Offset) { if (!DwarfLine) initializeDwarfLine(); |

