Skip to content

Commit 9f66520

Browse files
committed
clang-format
Created using spr 1.3.4
1 parent d8d259f commit 9f66520

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

bolt/include/bolt/Utils/CommandLineOpts.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ enum HeatmapModeKind {
2424
};
2525

2626
struct HeatmapBlockSpec {
27-
unsigned Initial{0}; // Initial block size in bytes.
27+
unsigned Initial{0}; // Initial block size in bytes.
2828
llvm::SmallVector<unsigned> Scales; // Pow2 zoom factors applied cumulatively.
2929
};
3030

bolt/lib/Utils/CommandLineOpts.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,7 @@ bool HeatmapBlockSpecParser::parse(cl::Option &O, StringRef ArgName,
107107
StringRef Arg, HeatmapBlockSpec &Val) {
108108
auto [InitialPart, ScalesPart] = Arg.split(':');
109109
if (InitialPart.getAsInteger(10, Val.Initial)) {
110-
O.error("'" + Arg +
111-
"' value invalid for block-size initial_size argument");
110+
O.error("'" + Arg + "' value invalid for block-size initial_size argument");
112111
return true;
113112
}
114113
// Scales part is optional.

0 commit comments

Comments
 (0)