Skip to content

Commit d2884a2

Browse files
committed
[NFC][XCOFF] Remove curly braces from single line if statement
Missed this detail from D155199.
1 parent f27017a commit d2884a2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/MC/XCOFFObjectWriter.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,9 +1194,8 @@ void XCOFFObjectWriter::finalizeSectionInfo() {
11941194
}
11951195
}
11961196

1197-
if (hasExceptionSection()) {
1197+
if (hasExceptionSection())
11981198
RawPointer = ExceptionSection.advanceFileOffset(MaxRawDataSize, RawPointer);
1199-
}
12001199

12011200
for (auto *Sec : Sections) {
12021201
if (Sec->Index != SectionEntry::UninitializedIndex)

0 commit comments

Comments
 (0)