diff options
author | Alexander Musman <alexander.musman@gmail.com> | 2014-09-11 08:10:57 +0000 |
---|---|---|
committer | Alexander Musman <alexander.musman@gmail.com> | 2014-09-11 08:10:57 +0000 |
commit | fdfa8557c0c93ecc20df958addad5445c2e5580b (patch) | |
tree | e409e5d4ae14df78ae6fa927e41de3118eeacf98 | |
parent | 7b33f21f3d910966e0462bcc50e4a14af21ad837 (diff) | |
download | bcm5719-llvm-fdfa8557c0c93ecc20df958addad5445c2e5580b.tar.gz bcm5719-llvm-fdfa8557c0c93ecc20df958addad5445c2e5580b.zip |
NULL->nullptr
llvm-svn: 217573
-rw-r--r-- | clang/lib/CodeGen/CGOpenMPRuntime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGOpenMPRuntime.cpp b/clang/lib/CodeGen/CGOpenMPRuntime.cpp index e5de9fc2f9a..7e68c4829e7 100644 --- a/clang/lib/CodeGen/CGOpenMPRuntime.cpp +++ b/clang/lib/CodeGen/CGOpenMPRuntime.cpp @@ -29,7 +29,7 @@ CGOpenMPRuntime::CGOpenMPRuntime(CodeGenModule &CGM) IdentTy = llvm::StructType::create( "ident_t", CGM.Int32Ty /* reserved_1 */, CGM.Int32Ty /* flags */, CGM.Int32Ty /* reserved_2 */, CGM.Int32Ty /* reserved_3 */, - CGM.Int8PtrTy /* psource */, NULL); + CGM.Int8PtrTy /* psource */, nullptr); // Build void (*kmpc_micro)(kmp_int32 *global_tid, kmp_int32 *bound_tid,...) llvm::Type *MicroParams[] = {llvm::PointerType::getUnqual(CGM.Int32Ty), llvm::PointerType::getUnqual(CGM.Int32Ty)}; |