diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-08-24 18:08:43 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-08-24 18:08:43 +0000 |
commit | 2bb40357079635058343743863f4d6be51501f51 (patch) | |
tree | 9eee77cfa43663abff598cfd4e80c9944029524e /llvm/tools/llvm-mc/llvm-mc.cpp | |
parent | d3e65e702f45ea3476f3bda2b8f69a3e3729e9e2 (diff) | |
download | bcm5719-llvm-2bb40357079635058343743863f4d6be51501f51.tar.gz bcm5719-llvm-2bb40357079635058343743863f4d6be51501f51.zip |
Move TargetRegistry and TargetSelect from Target to Support where they belong.
These are strictly utilities for registering targets and components.
llvm-svn: 138450
Diffstat (limited to 'llvm/tools/llvm-mc/llvm-mc.cpp')
-rw-r--r-- | llvm/tools/llvm-mc/llvm-mc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-mc/llvm-mc.cpp b/llvm/tools/llvm-mc/llvm-mc.cpp index 429699ba74d..483e7d52a40 100644 --- a/llvm/tools/llvm-mc/llvm-mc.cpp +++ b/llvm/tools/llvm-mc/llvm-mc.cpp @@ -26,8 +26,6 @@ #include "llvm/MC/MCSubtargetInfo.h" #include "llvm/MC/MCTargetAsmParser.h" #include "llvm/MC/SubtargetFeature.h" -#include "llvm/Target/TargetRegistry.h" -#include "llvm/Target/TargetSelect.h" #include "llvm/ADT/OwningPtr.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/FileUtilities.h" @@ -39,6 +37,8 @@ #include "llvm/Support/ToolOutputFile.h" #include "llvm/Support/Host.h" #include "llvm/Support/Signals.h" +#include "llvm/Support/TargetRegistry.h" +#include "llvm/Support/TargetSelect.h" #include "llvm/Support/system_error.h" #include "Disassembler.h" using namespace llvm; |