diff options
author | Tobias Grosser <tobias@grosser.es> | 2014-03-21 14:04:25 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2014-03-21 14:04:25 +0000 |
commit | 2f4529f864bc1d86952e5a7739e6fc5871ae4f14 (patch) | |
tree | 76bed9652b2649921e939b4c11a154fe08f7a105 /polly/lib/CodeGen | |
parent | a26fc5c9db197c0a8f7619d7530c6662a059bcc8 (diff) | |
download | bcm5719-llvm-2f4529f864bc1d86952e5a7739e6fc5871ae4f14.tar.gz bcm5719-llvm-2f4529f864bc1d86952e5a7739e6fc5871ae4f14.zip |
clang-format: Remove empty lines
llvm-svn: 204468
Diffstat (limited to 'polly/lib/CodeGen')
-rw-r--r-- | polly/lib/CodeGen/BlockGenerators.cpp | 2 | ||||
-rw-r--r-- | polly/lib/CodeGen/LoopGenerators.cpp | 1 | ||||
-rw-r--r-- | polly/lib/CodeGen/PTXGenerator.cpp | 1 |
3 files changed, 0 insertions, 4 deletions
diff --git a/polly/lib/CodeGen/BlockGenerators.cpp b/polly/lib/CodeGen/BlockGenerators.cpp index 0a9c1736abf..c2c4faa267f 100644 --- a/polly/lib/CodeGen/BlockGenerators.cpp +++ b/polly/lib/CodeGen/BlockGenerators.cpp @@ -220,7 +220,6 @@ Value *BlockGenerator::getNewValue(const Value *Old, ValueMapT &BBMap, void BlockGenerator::copyInstScalar(const Instruction *Inst, ValueMapT &BBMap, ValueMapT &GlobalMap, LoopToScevMapT <S) { - // We do not generate debug intrinsics as we did not investigate how to // copy them correctly. At the current state, they just crash the code // generation as the meta-data operands are not correctly copied. @@ -257,7 +256,6 @@ void BlockGenerator::copyInstScalar(const Instruction *Inst, ValueMapT &BBMap, std::vector<Value *> BlockGenerator::getMemoryAccessIndex( __isl_keep isl_map *AccessRelation, Value *BaseAddress, ValueMapT &BBMap, ValueMapT &GlobalMap, LoopToScevMapT <S, Loop *L) { - assert((isl_map_dim(AccessRelation, isl_dim_out) == 1) && "Only single dimensional access functions supported"); diff --git a/polly/lib/CodeGen/LoopGenerators.cpp b/polly/lib/CodeGen/LoopGenerators.cpp index b82819ec2ed..df2f9cc4fa3 100644 --- a/polly/lib/CodeGen/LoopGenerators.cpp +++ b/polly/lib/CodeGen/LoopGenerators.cpp @@ -50,7 +50,6 @@ Value *polly::createLoop(Value *LB, Value *UB, Value *Stride, PollyIRBuilder &Builder, Pass *P, BasicBlock *&ExitBB, ICmpInst::Predicate Predicate, LoopAnnotator *Annotator, bool Parallel) { - DominatorTree &DT = P->getAnalysis<DominatorTreeWrapperPass>().getDomTree(); LoopInfo &LI = P->getAnalysis<LoopInfo>(); Function *F = Builder.GetInsertBlock()->getParent(); diff --git a/polly/lib/CodeGen/PTXGenerator.cpp b/polly/lib/CodeGen/PTXGenerator.cpp index fb48f1289a2..7f0421ec7c7 100644 --- a/polly/lib/CodeGen/PTXGenerator.cpp +++ b/polly/lib/CodeGen/PTXGenerator.cpp @@ -37,7 +37,6 @@ PTXGenerator::PTXGenerator(PollyIRBuilder &Builder, Pass *P, const std::string &Triple) : Builder(Builder), P(P), GPUTriple(Triple), GridWidth(1), GridHeight(1), BlockWidth(1), BlockHeight(1), OutputBytes(0) { - InitializeGPUDataTypes(); } |