diff options
author | Tobias Grosser <tobias@grosser.es> | 2017-04-11 04:23:38 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2017-04-11 04:23:38 +0000 |
commit | 67726b326085026131fa657469b4e11347387e42 (patch) | |
tree | 80cd2612a87965b02442831a3e2af30e31a0860c /polly/lib/CodeGen/LoopGenerators.cpp | |
parent | 92ce1e76c5995e3188d481bb3c8c5f1377ddab1b (diff) | |
download | bcm5719-llvm-67726b326085026131fa657469b4e11347387e42.tar.gz bcm5719-llvm-67726b326085026131fa657469b4e11347387e42.zip |
SAdjust to recent change in constructor definition of AllocaInst
llvm-svn: 299913
Diffstat (limited to 'polly/lib/CodeGen/LoopGenerators.cpp')
-rw-r--r-- | polly/lib/CodeGen/LoopGenerators.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/CodeGen/LoopGenerators.cpp b/polly/lib/CodeGen/LoopGenerators.cpp index de8a21d2fc0..547c38d4a52 100644 --- a/polly/lib/CodeGen/LoopGenerators.cpp +++ b/polly/lib/CodeGen/LoopGenerators.cpp @@ -281,8 +281,8 @@ ParallelLoopGenerator::storeValuesIntoStruct(SetVector<Value *> &Values) { for (Value *V : Values) Members.push_back(V->getType()); - const DataLayout &DL - = Builder.GetInsertBlock()->getParent()->getParent()->getDataLayout(); + const DataLayout &DL = + Builder.GetInsertBlock()->getParent()->getParent()->getDataLayout(); // We do not want to allocate the alloca inside any loop, thus we allocate it // in the entry block of the function and use annotations to denote the actual |