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 | 3b844ba7d5be205a9b4f5f0b0d1b7978977f4b8c (patch) | |
tree | eb36aec98f3d8599d473bbfb43f961c8b41e3b81 /lib/CodeGen/TargetInfo.cpp | |
parent | 80ad52f327b532bded5c5b0ee38779d841c6cd35 (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171369 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/TargetInfo.cpp')
-rw-r--r-- | lib/CodeGen/TargetInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/TargetInfo.cpp b/lib/CodeGen/TargetInfo.cpp index d31a17c6b4..5f2bd52d0c 100644 --- a/lib/CodeGen/TargetInfo.cpp +++ b/lib/CodeGen/TargetInfo.cpp @@ -18,9 +18,9 @@ #include "clang/AST/RecordLayout.h" #include "clang/Frontend/CodeGenOptions.h" #include "llvm/ADT/Triple.h" -#include "llvm/DataLayout.h" +#include "llvm/IR/DataLayout.h" +#include "llvm/IR/Type.h" #include "llvm/Support/raw_ostream.h" -#include "llvm/Type.h" using namespace clang; using namespace CodeGen; |