DebugInfo/DWARF: Minor expression simplification

llvm-svn: 360377
This commit is contained in:
David Blaikie 2019-05-09 21:23:40 +00:00
parent 4c64256b51
commit 12faa0d44b
1 changed files with 1 additions and 1 deletions

View File

@ -633,7 +633,7 @@ DWARFUnit::getInlinedChainForAddress(uint64_t Address,
// First, find the subroutine that contains the given address (the leaf
// of inlined chain).
DWARFDie SubroutineDIE =
(DWO ? DWO.get() : this)->getSubroutineForAddress(Address);
(DWO ? *DWO : *this).getSubroutineForAddress(Address);
if (!SubroutineDIE)
return;