diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-08-24 18:09:14 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-08-24 18:09:14 +0000 |
commit | 494eb062b545b502f9ac8fdc987472923bc41ef8 (patch) | |
tree | 73c13d6a1a2c66c1daa7423d2d5ada13156c186e /clang/tools/driver/cc1as_main.cpp | |
parent | 2bb40357079635058343743863f4d6be51501f51 (diff) | |
download | bcm5719-llvm-494eb062b545b502f9ac8fdc987472923bc41ef8.tar.gz bcm5719-llvm-494eb062b545b502f9ac8fdc987472923bc41ef8.zip |
Match LLVM change: TargetRegistry and TargetSelect have been moved to Support.
llvm-svn: 138451
Diffstat (limited to 'clang/tools/driver/cc1as_main.cpp')
-rw-r--r-- | clang/tools/driver/cc1as_main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/tools/driver/cc1as_main.cpp b/clang/tools/driver/cc1as_main.cpp index 16218884923..9762bed6af3 100644 --- a/clang/tools/driver/cc1as_main.cpp +++ b/clang/tools/driver/cc1as_main.cpp @@ -43,15 +43,15 @@ #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/PrettyStackTrace.h" #include "llvm/Support/SourceMgr.h" -#include "llvm/Support/Timer.h" -#include "llvm/Support/raw_ostream.h" #include "llvm/Support/Host.h" #include "llvm/Support/Path.h" #include "llvm/Support/Signals.h" +#include "llvm/Support/TargetRegistry.h" +#include "llvm/Support/TargetSelect.h" +#include "llvm/Support/Timer.h" +#include "llvm/Support/raw_ostream.h" #include "llvm/Support/system_error.h" #include "llvm/Target/TargetData.h" -#include "llvm/Target/TargetRegistry.h" -#include "llvm/Target/TargetSelect.h" using namespace clang; using namespace clang::driver; using namespace llvm; |