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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207452 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eli Bendersky
2014-04-28 22:19:12 +00:00
parent 00f0627f76
commit e5d5922d14

View File

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