diff options
Diffstat (limited to 'polly/include/polly/CodeGen/LoopGenerators.h')
-rw-r--r-- | polly/include/polly/CodeGen/LoopGenerators.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/polly/include/polly/CodeGen/LoopGenerators.h b/polly/include/polly/CodeGen/LoopGenerators.h index a991a93fe1d..023ebbf9f37 100644 --- a/polly/include/polly/CodeGen/LoopGenerators.h +++ b/polly/include/polly/CodeGen/LoopGenerators.h @@ -101,7 +101,7 @@ public: /// Create a parallel loop generator for the current function. ParallelLoopGenerator(PollyIRBuilder &Builder, Pass *P, LoopInfo &LI, DominatorTree &DT, const DataLayout &DL) - : Builder(Builder), P(P), LI(LI), DT(DT), DL(DL), + : Builder(Builder), P(P), LI(LI), DT(DT), LongType( Type::getIntNTy(Builder.getContext(), DL.getPointerSizeInBits())), M(Builder.GetInsertBlock()->getParent()->getParent()) {} @@ -140,9 +140,6 @@ private: /// The dominance tree of the current function we need to update. DominatorTree &DT; - /// The target layout to get the right size for types. - const DataLayout &DL; - /// The type of a "long" on this hardware used for backend calls. Type *LongType; |