From e5d5922d143df008d4a37e39ae6b64912bfadc60 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Mon, 28 Apr 2014 22:19:12 +0000 Subject: [PATCH] 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 --- lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index c2ecc8a37e4..2dc539ed9cc 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -591,9 +591,9 @@ std::unique_ptr 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, 8> Children;