diff options
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp | 4 |
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; } |