Replace a few instances of NULL with nullptr.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230599 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Majnemer
2015-02-26 01:10:49 +00:00
parent 3142798ac8
commit 3bd9ff3f1e
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -597,7 +597,7 @@ int main(int argc, char **argv, char * const *envp) {
// function later on to make an explicit call, so get the function now.
Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context),
Type::getInt32Ty(Context),
NULL);
nullptr);
// Run static constructors.
if (!ForceInterpreter) {