diff options
author | Eli Bendersky <eliben@google.com> | 2014-04-28 22:19:12 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2014-04-28 22:19:12 +0000 |
commit | 6ae9883eebc0313c24f385d12ce7c075d8297ab3 (patch) | |
tree | 49a7cdf733367154079e411ddfd256f566e525ae /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | 27d69dbbd073b5a4973d7089dcb37f764a76ebb9 (diff) | |
download | bcm5719-llvm-6ae9883eebc0313c24f385d12ce7c075d8297ab3.tar.gz bcm5719-llvm-6ae9883eebc0313c24f385d12ce7c075d8297ab3.zip |
Add (...) around && clause to appeace gcc 4.8's warning
llvm-svn: 207452
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index c2ecc8a37e4..2dc539ed9cc 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/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; |