summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Bendersky <eliben@google.com>2014-04-28 22:19:12 +0000
committerEli Bendersky <eliben@google.com>2014-04-28 22:19:12 +0000
commite5d5922d143df008d4a37e39ae6b64912bfadc60 (patch)
tree8a7e58180b1c98ac8b717e06ca779b3f4a72f124
parent00f0627f76058643538953453bdf193a02dbe5e7 (diff)
downloadllvm-e5d5922d143df008d4a37e39ae6b64912bfadc60.tar.gz
llvm-e5d5922d143df008d4a37e39ae6b64912bfadc60.tar.bz2
llvm-e5d5922d143df008d4a37e39ae6b64912bfadc60.tar.xz
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
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfDebug.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
index c2ecc8a37e..2dc539ed9c 100644
--- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
+++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
@@ -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;