diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-07-23 00:45:53 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-07-23 00:45:53 +0000 |
commit | 06e70d33fc111b914fff00f73a5fbdc2ba0d6e4c (patch) | |
tree | 657181099e15ad8c5eccb7272fc53287b8261292 /clang/tools/driver/cc1as_main.cpp | |
parent | f2596bc62a730af63234207ca9a347b72c917bce (diff) | |
download | bcm5719-llvm-06e70d33fc111b914fff00f73a5fbdc2ba0d6e4c.tar.gz bcm5719-llvm-06e70d33fc111b914fff00f73a5fbdc2ba0d6e4c.zip |
Move TargetAsmParser.h TargetAsmBackend.h and TargetAsmLexer.h to MC where they belong.
llvm-svn: 135834
Diffstat (limited to 'clang/tools/driver/cc1as_main.cpp')
-rw-r--r-- | clang/tools/driver/cc1as_main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/tools/driver/cc1as_main.cpp b/clang/tools/driver/cc1as_main.cpp index db05709f42a..c7b5d703a9e 100644 --- a/clang/tools/driver/cc1as_main.cpp +++ b/clang/tools/driver/cc1as_main.cpp @@ -34,6 +34,8 @@ #include "llvm/MC/MCRegisterInfo.h" #include "llvm/MC/MCStreamer.h" #include "llvm/MC/MCSubtargetInfo.h" +#include "llvm/MC/TargetAsmBackend.h" +#include "llvm/MC/TargetAsmParser.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/FormattedStream.h" #include "llvm/Support/ErrorHandling.h" @@ -47,8 +49,6 @@ #include "llvm/Support/Path.h" #include "llvm/Support/Signals.h" #include "llvm/Support/system_error.h" -#include "llvm/Target/TargetAsmBackend.h" -#include "llvm/Target/TargetAsmParser.h" #include "llvm/Target/TargetData.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetLowering.h" |