aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-mca/llvm-mca.cpp
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2021-10-08 10:48:15 -0700
committerReid Kleckner <rnk@google.com>2021-10-08 14:51:48 -0700
commit89b57061f7b769e9ea9bf6ed686e284f3e55affe (patch)
treebca28b6459fb9dbaef3f43c4222d414b4576d0de /llvm/tools/llvm-mca/llvm-mca.cpp
parent3db1ade368e538ba795486eea4923e331a8dde5a (diff)
downloadllvm-89b57061f7b769e9ea9bf6ed686e284f3e55affe.zip
llvm-89b57061f7b769e9ea9bf6ed686e284f3e55affe.tar.gz
llvm-89b57061f7b769e9ea9bf6ed686e284f3e55affe.tar.bz2
Move TargetRegistry.(h|cpp) from Support to MC
This moves the registry higher in the LLVM library dependency stack. Every client of the target registry needs to link against MC anyway to actually use the target, so we might as well move this out of Support. This allows us to ensure that Support doesn't have includes from MC/*. Differential Revision: https://reviews.llvm.org/D111454
Diffstat (limited to 'llvm/tools/llvm-mca/llvm-mca.cpp')
-rw-r--r--llvm/tools/llvm-mca/llvm-mca.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-mca/llvm-mca.cpp b/llvm/tools/llvm-mca/llvm-mca.cpp
index b75a639..0b58ca3 100644
--- a/llvm/tools/llvm-mca/llvm-mca.cpp
+++ b/llvm/tools/llvm-mca/llvm-mca.cpp
@@ -40,6 +40,7 @@
#include "llvm/MC/MCRegisterInfo.h"
#include "llvm/MC/MCSubtargetInfo.h"
#include "llvm/MC/MCTargetOptionsCommandFlags.h"
+#include "llvm/MC/TargetRegistry.h"
#include "llvm/MCA/CodeEmitter.h"
#include "llvm/MCA/Context.h"
#include "llvm/MCA/CustomBehaviour.h"
@@ -56,7 +57,6 @@
#include "llvm/Support/InitLLVM.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/SourceMgr.h"
-#include "llvm/Support/TargetRegistry.h"
#include "llvm/Support/TargetSelect.h"
#include "llvm/Support/ToolOutputFile.h"
#include "llvm/Support/WithColor.h"