r217573 - NULL->nullptr

Alexander Musman alexander.musman at gmail.com
Thu Sep 11 01:10:58 PDT 2014


Author: amusman
Date: Thu Sep 11 03:10:57 2014
New Revision: 217573

URL: http://llvm.org/viewvc/llvm-project?rev=217573&view=rev
Log:
NULL->nullptr

Modified:
    cfe/trunk/lib/CodeGen/CGOpenMPRuntime.cpp

Modified: cfe/trunk/lib/CodeGen/CGOpenMPRuntime.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGOpenMPRuntime.cpp?rev=217573&r1=217572&r2=217573&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGOpenMPRuntime.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGOpenMPRuntime.cpp Thu Sep 11 03:10:57 2014
@@ -29,7 +29,7 @@ CGOpenMPRuntime::CGOpenMPRuntime(CodeGen
   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)};





More information about the cfe-commits mailing list