mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
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:
parent
00f0627f76
commit
e5d5922d14
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user