diff options
author | Hans Wennborg <hans@hanshq.net> | 2015-09-29 20:56:43 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2015-09-29 20:56:43 +0000 |
commit | 59dbe86325a03d1d3591d241861d4239278e72ef (patch) | |
tree | 3d35a3b2124fa5368ef1b16008d1ce94fa71b358 /clang/lib/CodeGen/CodeGenModule.h | |
parent | 1769d8505f8af16ac5a88c1198d5493dd5712918 (diff) | |
download | llvm-59dbe86325a03d1d3591d241861d4239278e72ef.zip llvm-59dbe86325a03d1d3591d241861d4239278e72ef.tar.gz llvm-59dbe86325a03d1d3591d241861d4239278e72ef.tar.bz2 |
Fix Clang-tidy modernize-use-nullptr warnings in headers and generated files; other minor cleanups.
By Eugene Zelenko!
Differential Revision: http://reviews.llvm.org/D13187
llvm-svn: 248828
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 5f40d41..b1071a4 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -715,7 +715,7 @@ public: /// Return the address of the given function. If Ty is non-null, then this /// function will use the specified type if it has to create it. - llvm::Constant *GetAddrOfFunction(GlobalDecl GD, llvm::Type *Ty = 0, + llvm::Constant *GetAddrOfFunction(GlobalDecl GD, llvm::Type *Ty = nullptr, bool ForVTable = false, bool DontDefer = false, bool IsForDefinition = false); @@ -1184,7 +1184,7 @@ private: // FIXME: Hardcoding priority here is gross. void AddGlobalCtor(llvm::Function *Ctor, int Priority = 65535, - llvm::Constant *AssociatedData = 0); + llvm::Constant *AssociatedData = nullptr); void AddGlobalDtor(llvm::Function *Dtor, int Priority = 65535); /// Generates a global array of functions and priorities using the given list @@ -1251,4 +1251,4 @@ private: } // end namespace CodeGen } // end namespace clang -#endif +#endif // LLVM_CLANG_LIB_CODEGEN_CODEGENMODULE_H |