Add parentheses to silence warnings.

llvm-svn: 365397
This commit is contained in:
Bill Wendling 2019-07-08 22:05:02 +00:00
parent 025e44f289
commit 858e35160e
1 changed files with 2 additions and 3 deletions

View File

@ -132,9 +132,8 @@ void DataSection::finalizeContents() {
OS.flush();
BodySize = DataSectionHeader.size();
assert(!Config->Pic ||
Segments.size() <= 1 &&
"Currenly only a single data segment is supported in PIC mode");
assert((!Config->Pic || Segments.size() <= 1) &&
"Currenly only a single data segment is supported in PIC mode");
for (OutputSegment *Segment : Segments) {
raw_string_ostream OS(Segment->Header);