diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2013-01-02 11:45:17 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2013-01-02 11:45:17 +0000 |
commit | ffd5551bc77cc0c896c897e0bfcf8307bf3ea943 (patch) | |
tree | f2b33019fa561cbbadb9bcdfcadb6fe381ea2126 /clang/lib/CodeGen/BackendUtil.cpp | |
parent | 2bf7fdb723fc513e3d12bfdf96102c46230f74e3 (diff) | |
download | bcm5719-llvm-ffd5551bc77cc0c896c897e0bfcf8307bf3ea943.tar.gz bcm5719-llvm-ffd5551bc77cc0c896c897e0bfcf8307bf3ea943.zip |
Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to
reflect the migration in r171366.
Re-sort the #include lines to reflect the new paths.
llvm-svn: 171369
Diffstat (limited to 'clang/lib/CodeGen/BackendUtil.cpp')
-rw-r--r-- | clang/lib/CodeGen/BackendUtil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/BackendUtil.cpp b/clang/lib/CodeGen/BackendUtil.cpp index f9d3a178d9c..5abac4a2294 100644 --- a/clang/lib/CodeGen/BackendUtil.cpp +++ b/clang/lib/CodeGen/BackendUtil.cpp @@ -18,9 +18,9 @@ #include "llvm/Bitcode/ReaderWriter.h" #include "llvm/CodeGen/RegAllocRegistry.h" #include "llvm/CodeGen/SchedulerRegistry.h" -#include "llvm/DataLayout.h" +#include "llvm/IR/DataLayout.h" +#include "llvm/IR/Module.h" #include "llvm/MC/SubtargetFeature.h" -#include "llvm/Module.h" #include "llvm/PassManager.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/FormattedStream.h" |