forked from OSchip/llvm-project
AsmPrinter: Avoid a warning in NDEBUG, NFC
Should fix the -Werror release build: http://lab.llvm.org:8011/builders/lld-x86_64-darwin13/builds/11113 llvm-svn: 238375
This commit is contained in:
parent
6289892c20
commit
a68b880d69
|
@ -107,6 +107,7 @@ unsigned DwarfFile::computeSizeAndOffset(DIE &Die, unsigned Offset) {
|
|||
|
||||
// Size the DIE children if any.
|
||||
if (!Children.empty()) {
|
||||
(void)Abbrev;
|
||||
assert(Abbrev.hasChildren() && "Children flag not set");
|
||||
|
||||
for (auto &Child : Children)
|
||||
|
|
Loading…
Reference in New Issue