diff options
author | Kazu Hirata <kazu@google.com> | 2023-12-05 23:28:09 -0800 |
---|---|---|
committer | Kazu Hirata <kazu@google.com> | 2023-12-05 23:28:09 -0800 |
commit | c630f95f33e31fe11ec6242560d9bf5d57007673 (patch) | |
tree | a25d5c2f2c0c74e0ca9d143437f4ace40a23253a | |
parent | a05e20b9720f8b012f06f410d92f1f22b55bce74 (diff) | |
download | llvm-c630f95f33e31fe11ec6242560d9bf5d57007673.zip llvm-c630f95f33e31fe11ec6242560d9bf5d57007673.tar.gz llvm-c630f95f33e31fe11ec6242560d9bf5d57007673.tar.bz2 |
[llvm-exegesis] Remove unnecessary includes (NFC)
Identified with clangd.
6 files changed, 0 insertions, 9 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/Analysis.cpp b/llvm/tools/llvm-exegesis/lib/Analysis.cpp index bd088b9..2b924b9 100644 --- a/llvm/tools/llvm-exegesis/lib/Analysis.cpp +++ b/llvm/tools/llvm-exegesis/lib/Analysis.cpp @@ -13,7 +13,6 @@ #include "llvm/MC/MCTargetOptions.h" #include "llvm/Support/FormatVariadic.h" #include <limits> -#include <unordered_set> #include <vector> namespace llvm { diff --git a/llvm/tools/llvm-exegesis/lib/Analysis.h b/llvm/tools/llvm-exegesis/lib/Analysis.h index a0f22ba..4a85d45 100644 --- a/llvm/tools/llvm-exegesis/lib/Analysis.h +++ b/llvm/tools/llvm-exegesis/lib/Analysis.h @@ -23,7 +23,6 @@ #include "llvm/Support/Error.h" #include "llvm/Support/raw_ostream.h" #include <memory> -#include <set> namespace llvm { namespace exegesis { diff --git a/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp b/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp index 6c97ee9..dd7c1a3 100644 --- a/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp +++ b/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp @@ -16,7 +16,6 @@ #include "PerfHelper.h" #include "SubprocessMemory.h" #include "Target.h" -#include "llvm/ADT/ScopeExit.h" #include "llvm/ADT/StringExtras.h" #include "llvm/ADT/StringRef.h" #include "llvm/ADT/Twine.h" diff --git a/llvm/tools/llvm-exegesis/lib/SchedClassResolution.cpp b/llvm/tools/llvm-exegesis/lib/SchedClassResolution.cpp index 08fd718..5910757 100644 --- a/llvm/tools/llvm-exegesis/lib/SchedClassResolution.cpp +++ b/llvm/tools/llvm-exegesis/lib/SchedClassResolution.cpp @@ -12,8 +12,6 @@ #include "llvm/MC/MCAsmInfo.h" #include "llvm/MCA/Support.h" #include "llvm/Support/FormatVariadic.h" -#include <limits> -#include <unordered_set> #include <vector> namespace llvm { diff --git a/llvm/unittests/tools/llvm-exegesis/Mips/SnippetGeneratorTest.cpp b/llvm/unittests/tools/llvm-exegesis/Mips/SnippetGeneratorTest.cpp index 3929481..d93b023 100644 --- a/llvm/unittests/tools/llvm-exegesis/Mips/SnippetGeneratorTest.cpp +++ b/llvm/unittests/tools/llvm-exegesis/Mips/SnippetGeneratorTest.cpp @@ -15,8 +15,6 @@ #include "SerialSnippetGenerator.h" #include "TestBase.h" -#include <unordered_set> - namespace llvm { namespace exegesis { namespace { diff --git a/llvm/unittests/tools/llvm-exegesis/PowerPC/SnippetGeneratorTest.cpp b/llvm/unittests/tools/llvm-exegesis/PowerPC/SnippetGeneratorTest.cpp index 007fa5b..81651b3 100644 --- a/llvm/unittests/tools/llvm-exegesis/PowerPC/SnippetGeneratorTest.cpp +++ b/llvm/unittests/tools/llvm-exegesis/PowerPC/SnippetGeneratorTest.cpp @@ -15,8 +15,6 @@ #include "SerialSnippetGenerator.h" #include "TestBase.h" -#include <unordered_set> - namespace llvm { namespace exegesis { namespace { |