Feedback on r214189, no functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214240 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Manman Ren
2014-07-29 22:58:13 +00:00
parent b140034aeb
commit 70626f555c
3 changed files with 3 additions and 3 deletions

View File

@ -473,7 +473,7 @@ DIE *DwarfDebug::createScopeChildrenDIE(
// If we have more than one elements and the last one is null, it is a
// variadic function.
if (FnArgs.getNumElements() > 1 &&
!resolve(FnArgs.getElement(FnArgs.getNumElements() - 1)))
!FnArgs.getElement(FnArgs.getNumElements() - 1))
Children.push_back(
make_unique<DIE>(dwarf::DW_TAG_unspecified_parameters));
}