diff options
author | Archibald Elliott <archibald.elliott@arm.com> | 2023-02-10 09:59:46 +0000 |
---|---|---|
committer | Archibald Elliott <archibald.elliott@arm.com> | 2023-02-10 09:59:46 +0000 |
commit | d768bf994f508d7eaf9541a568be3d71096febf5 (patch) | |
tree | be41cbae09e0493dd3699f8d93a0bf98689452bd /llvm/unittests/Support/CommandLineTest.cpp | |
parent | 4ad8f7a189570dc2560d0efdd05e6a8153313808 (diff) | |
download | llvm-d768bf994f508d7eaf9541a568be3d71096febf5.zip llvm-d768bf994f508d7eaf9541a568be3d71096febf5.tar.gz llvm-d768bf994f508d7eaf9541a568be3d71096febf5.tar.bz2 |
[NFC][TargetParser] Replace uses of llvm/Support/Host.h
The forwarding header is left in place because of its use in
`polly/lib/External/isl/interface/extract_interface.cc`, but I have
added a GCC warning about the fact it is deprecated, because it is used
in `isl` from where it is included by Polly.
Diffstat (limited to 'llvm/unittests/Support/CommandLineTest.cpp')
-rw-r--r-- | llvm/unittests/Support/CommandLineTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/CommandLineTest.cpp b/llvm/unittests/Support/CommandLineTest.cpp index f15709a..4f7cb40 100644 --- a/llvm/unittests/Support/CommandLineTest.cpp +++ b/llvm/unittests/Support/CommandLineTest.cpp @@ -13,7 +13,6 @@ #include "llvm/Config/config.h" #include "llvm/Support/Allocator.h" #include "llvm/Support/FileSystem.h" -#include "llvm/Support/Host.h" #include "llvm/Support/InitLLVM.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Path.h" @@ -21,6 +20,7 @@ #include "llvm/Support/StringSaver.h" #include "llvm/Support/VirtualFileSystem.h" #include "llvm/Support/raw_ostream.h" +#include "llvm/TargetParser/Host.h" #include "llvm/TargetParser/Triple.h" #include "llvm/Testing/Support/SupportHelpers.h" #include "gmock/gmock.h" |