diff options
author | Tobias Grosser <tobias@grosser.es> | 2014-11-14 11:12:31 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2014-11-14 11:12:31 +0000 |
commit | c98a8fccf7ae165041d4cfd27a398960e66d839a (patch) | |
tree | 467247a60d208b30ab72cb3110631d6db835663e /polly/lib/CodeGen/CodeGeneration.cpp | |
parent | 734d52b58bf3056a91e16c866da00f5b49e40098 (diff) | |
download | bcm5719-llvm-c98a8fccf7ae165041d4cfd27a398960e66d839a.tar.gz bcm5719-llvm-c98a8fccf7ae165041d4cfd27a398960e66d839a.zip |
Use nullptr instead of '0' for pointers
llvm-svn: 221982
Diffstat (limited to 'polly/lib/CodeGen/CodeGeneration.cpp')
-rw-r--r-- | polly/lib/CodeGen/CodeGeneration.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/CodeGeneration.cpp b/polly/lib/CodeGen/CodeGeneration.cpp index d58d40d2ac5..d1b1709cafe 100644 --- a/polly/lib/CodeGen/CodeGeneration.cpp +++ b/polly/lib/CodeGen/CodeGeneration.cpp @@ -762,7 +762,7 @@ void ClastStmtCodeGen::codegenForGPGPU(const clast_for *F) { BasicBlock::iterator AfterLoop = Builder.GetInsertPoint(); Builder.SetInsertPoint(LoopBody); - BasicBlock *AfterBB = 0; + BasicBlock *AfterBB = nullptr; if (NonPLoopDepth) { Value *LowerBound, *UpperBound, *IV, *Stride; Type *IntPtrTy = getIntPtrTy(); |