diff options
author | Bob Haarman <llvm@inglorion.net> | 2017-10-13 18:22:55 +0000 |
---|---|---|
committer | Bob Haarman <llvm@inglorion.net> | 2017-10-13 18:22:55 +0000 |
commit | 4f5c8c29ac38fc459d045cb9968a10764eba0a1e (patch) | |
tree | f14f3f07f7515f68593805c08e388656661e804f /lld/ELF/MapFile.cpp | |
parent | bfc20343a3f215e737dad244e77bbeb1ce02583c (diff) | |
download | bcm5719-llvm-4f5c8c29ac38fc459d045cb9968a10764eba0a1e.tar.gz bcm5719-llvm-4f5c8c29ac38fc459d045cb9968a10764eba0a1e.zip |
[lld] Move Threads to Common
Summary:
This will allow using the functionality from other linkers. It is also
a prerequisite for sharing the error logging code.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: emaste, mgorny, llvm-commits
Differential Revision: https://reviews.llvm.org/D38822
llvm-svn: 315725
Diffstat (limited to 'lld/ELF/MapFile.cpp')
-rw-r--r-- | lld/ELF/MapFile.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lld/ELF/MapFile.cpp b/lld/ELF/MapFile.cpp index 968dc611b81..ad80b0696eb 100644 --- a/lld/ELF/MapFile.cpp +++ b/lld/ELF/MapFile.cpp @@ -26,7 +26,8 @@ #include "Strings.h" #include "SymbolTable.h" #include "SyntheticSections.h" -#include "Threads.h" + +#include "lld/Common/Threads.h" #include "llvm/Support/raw_ostream.h" |