Skip to content

Commit 4859c46

Browse files
committed
Fix gcc Wparentheses warning. NFC.
1 parent d60008d commit 4859c46

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1331,9 +1331,9 @@ DWARFDebugLine::LineTable::lookupAddress(object::SectionedAddress Address,
13311331
uint32_t
13321332
DWARFDebugLine::LineTable::lookupAddressImpl(object::SectionedAddress Address,
13331333
bool *IsApproximateLine) const {
1334-
assert(!IsApproximateLine ||
1335-
!*IsApproximateLine && "Make sure IsApproximateLine is appropriately "
1336-
"initialized, if provided");
1334+
assert((!IsApproximateLine || !*IsApproximateLine) &&
1335+
"Make sure IsApproximateLine is appropriately "
1336+
"initialized, if provided");
13371337
// First, find an instruction sequence containing the given address.
13381338
DWARFDebugLine::Sequence Sequence;
13391339
Sequence.SectionIndex = Address.SectionIndex;

0 commit comments

Comments
 (0)