diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2013-01-02 11:47:44 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2013-01-02 11:47:44 +0000 |
commit | 535d52c7ca390bdeab1b4f261942197d2b65ad93 (patch) | |
tree | 058f9b71d9d781083b03fe805b19b53604d8db9f /polly/include | |
parent | ffd5551bc77cc0c896c897e0bfcf8307bf3ea943 (diff) | |
download | bcm5719-llvm-535d52c7ca390bdeab1b4f261942197d2b65ad93.tar.gz bcm5719-llvm-535d52c7ca390bdeab1b4f261942197d2b65ad93.zip |
Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to
reflect the migration in r171366.
llvm-svn: 171370
Diffstat (limited to 'polly/include')
-rw-r--r-- | polly/include/polly/CodeGen/BlockGenerators.h | 2 | ||||
-rw-r--r-- | polly/include/polly/CodeGen/LoopGenerators.h | 2 | ||||
-rw-r--r-- | polly/include/polly/CodeGen/PTXGenerator.h | 2 | ||||
-rwxr-xr-x | polly/include/polly/TempScopInfo.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/polly/include/polly/CodeGen/BlockGenerators.h b/polly/include/polly/CodeGen/BlockGenerators.h index e30042390e0..17e68ef7927 100644 --- a/polly/include/polly/CodeGen/BlockGenerators.h +++ b/polly/include/polly/CodeGen/BlockGenerators.h @@ -16,7 +16,7 @@ #ifndef POLLY_BLOCK_GENERATORS_H #define POLLY_BLOCK_GENERATORS_H -#include "llvm/IRBuilder.h" +#include "llvm/IR/IRBuilder.h" #include "llvm/ADT/DenseMap.h" #include "isl/map.h" diff --git a/polly/include/polly/CodeGen/LoopGenerators.h b/polly/include/polly/CodeGen/LoopGenerators.h index 68a621780c2..f6e2ef058d0 100644 --- a/polly/include/polly/CodeGen/LoopGenerators.h +++ b/polly/include/polly/CodeGen/LoopGenerators.h @@ -13,7 +13,7 @@ //===----------------------------------------------------------------------===// #ifndef POLLY_LOOP_GENERATORS_H #define POLLY_LOOP_GENERATORS_H -#include "llvm/IRBuilder.h" +#include "llvm/IR/IRBuilder.h" #include "llvm/ADT/SetVector.h" #include <map> diff --git a/polly/include/polly/CodeGen/PTXGenerator.h b/polly/include/polly/CodeGen/PTXGenerator.h index 80b89e34f55..fc7b4869537 100644 --- a/polly/include/polly/CodeGen/PTXGenerator.h +++ b/polly/include/polly/CodeGen/PTXGenerator.h @@ -16,7 +16,7 @@ #include "polly/Config/config.h" #ifdef GPU_CODEGEN -#include "llvm/IRBuilder.h" +#include "llvm/IR/IRBuilder.h" #include "llvm/ADT/SetVector.h" #include <map> diff --git a/polly/include/polly/TempScopInfo.h b/polly/include/polly/TempScopInfo.h index c0aca97070f..9182dff056d 100755 --- a/polly/include/polly/TempScopInfo.h +++ b/polly/include/polly/TempScopInfo.h @@ -20,7 +20,7 @@ #include "polly/ScopDetection.h" #include "llvm/Analysis/RegionPass.h" -#include "llvm/Instructions.h" +#include "llvm/IR/Instructions.h" namespace llvm { class DataLayout; |