summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2014-04-15 06:32:26 +0000
committerCraig Topper <craig.topper@gmail.com>2014-04-15 06:32:26 +0000
commit2617dccea2721fd74677f0a7bcf5a768238421d0 (patch)
treead5ee2efaff543d7da11f1599bdabb6588d1c1dd /llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp
parentd82d4cc3567e896fad35372adba9a676c7776cd0 (diff)
downloadbcm5719-llvm-2617dccea2721fd74677f0a7bcf5a768238421d0.tar.gz
bcm5719-llvm-2617dccea2721fd74677f0a7bcf5a768238421d0.zip
[C++11] More 'nullptr' conversion. In some cases just using a boolean check instead of comparing to nullptr.
llvm-svn: 206252
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp')
-rw-r--r--llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp b/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp
index fd5f5e95fc1..6ff8eca956a 100644
--- a/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp
+++ b/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp
@@ -50,7 +50,7 @@ DWARFAbbreviationDeclarationSet::getAbbreviationDeclaration(uint32_t abbrCode)
if (idx < Decls.size())
return &Decls[idx];
}
- return NULL;
+ return nullptr;
}
DWARFDebugAbbrev::DWARFDebugAbbrev() :
@@ -99,5 +99,5 @@ DWARFDebugAbbrev::getAbbreviationDeclarationSet(uint64_t cu_abbr_offset) const {
if (pos != AbbrevCollMap.end())
return &(pos->second);
- return NULL;
+ return nullptr;
}
OpenPOWER on IntegriCloud