Skip to content

Commit c3b53af

Browse files
committed
Clang format.
1 parent 18707c5 commit c3b53af

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

llvm/tools/llvm-dwp/llvm-dwp.cpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,9 @@ int llvm_dwp_main(int argc, char **argv, const llvm::ToolContext &) {
176176
} else if (OptValue == "always") {
177177
Dwarf64StrOffsetsValue = Dwarf64StrOffsets::Always;
178178
} else {
179-
llvm::errs() << "invalid value for --dwarf64-str-offsets. Valid values "
180-
"are one of: \"enabled\", \"disabled\" or \"always\".\n";
179+
llvm::errs()
180+
<< "invalid value for --dwarf64-str-offsets. Valid values "
181+
"are one of: \"enabled\", \"disabled\" or \"always\".\n";
181182
exit(1);
182183
}
183184
}
@@ -296,8 +297,8 @@ int llvm_dwp_main(int argc, char **argv, const llvm::ToolContext &) {
296297
if (!MS)
297298
return error("no object streamer for target " + TripleName, Context);
298299

299-
if (auto Err = write(*MS, DWOFilenames, OverflowOptValue,
300-
Dwarf64StrOffsetsValue)) {
300+
if (auto Err =
301+
write(*MS, DWOFilenames, OverflowOptValue, Dwarf64StrOffsetsValue)) {
301302
logAllUnhandledErrors(std::move(Err), WithColor::error());
302303
return 1;
303304
}

0 commit comments

Comments
 (0)