Add (...) around && clause to appeace gcc 4.8's warning

llvm-svn: 207452
This commit is contained in:
Eli Bendersky 2014-04-28 22:19:12 +00:00
parent 27d69dbbd0
commit 6ae9883eeb
1 changed files with 3 additions and 3 deletions

View File

@ -591,9 +591,9 @@ std::unique_ptr<DIE> DwarfDebug::constructScopeDIE(DwarfCompileUnit &TheCU,
DIScope DS(Scope->getScopeNode());
assert(Scope->getInlinedAt() ||
!DS.isSubprogram() && "Only handle inlined subprograms here, use "
"constructSubprogramScopeDIE for non-inlined "
"subprograms");
(!DS.isSubprogram() && "Only handle inlined subprograms here, use "
"constructSubprogramScopeDIE for non-inlined "
"subprograms"));
SmallVector<std::unique_ptr<DIE>, 8> Children;