summaryrefslogtreecommitdiffstats
path: root/llvm/tools/lli/lli.cpp
diff options
context:
space:
mode:
authorDavid Majnemer <david.majnemer@gmail.com>2015-02-26 01:10:49 +0000
committerDavid Majnemer <david.majnemer@gmail.com>2015-02-26 01:10:49 +0000
commit6539ed75eb533906b1c413efa596c6ef6abb6b5c (patch)
treebfa49328d5c8d48bb1d3c990c44306f6872335e6 /llvm/tools/lli/lli.cpp
parentbd92dbacee619842354de3ecba55385baddea619 (diff)
downloadbcm5719-llvm-6539ed75eb533906b1c413efa596c6ef6abb6b5c.tar.gz
bcm5719-llvm-6539ed75eb533906b1c413efa596c6ef6abb6b5c.zip
Replace a few instances of NULL with nullptr.
llvm-svn: 230599
Diffstat (limited to 'llvm/tools/lli/lli.cpp')
-rw-r--r--llvm/tools/lli/lli.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/lli/lli.cpp b/llvm/tools/lli/lli.cpp
index 178df1fa04c..9c2b781ab22 100644
--- a/llvm/tools/lli/lli.cpp
+++ b/llvm/tools/lli/lli.cpp
@@ -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) {
OpenPOWER on IntegriCloud