Skip to content

Commit 69340e1

Browse files
[MCA] Fix formatting
1 parent dfdb38d commit 69340e1

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

llvm/tools/llvm-mca/llvm-mca.cpp

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -259,10 +259,11 @@ static cl::opt<bool> ShowBarriers(
259259
cl::desc("Print memory barrier information in the instruction info view"),
260260
cl::cat(ViewOptions), cl::init(false));
261261

262-
static cl::opt<bool> ShowSchedulingInfo(
263-
"scheduling-info",
264-
cl::desc("Print the instruction scheduling information in the instruction info view"),
265-
cl::cat(ViewOptions), cl::init(false));
262+
static cl::opt<bool>
263+
ShowSchedulingInfo("scheduling-info",
264+
cl::desc("Print the instruction scheduling information "
265+
"in the instruction info view"),
266+
cl::cat(ViewOptions), cl::init(false));
266267

267268
static cl::opt<bool> DisableCustomBehaviour(
268269
"disable-cb",
@@ -683,13 +684,13 @@ int main(int argc, char **argv) {
683684

684685
// Create the views for this pipeline, execute, and emit a report.
685686
if (PrintInstructionInfoView) {
686-
Printer.addView(std::make_unique<mca::InstructionInfoView>(
687-
*STI, *MCII, CE, ShowEncoding, Insts, *IP, LoweredSequence,
688-
ShowBarriers, ShowSchedulingInfo, *IM, InstToInstruments));
687+
Printer.addView(std::make_unique<mca::InstructionInfoView>(
688+
*STI, *MCII, CE, ShowEncoding, Insts, *IP, LoweredSequence,
689+
ShowBarriers, ShowSchedulingInfo, *IM, InstToInstruments));
689690
}
690691

691692
Printer.addView(
692-
std::make_unique<mca::ResourcePressureView>(*STI, *IP, Insts));
693+
std::make_unique<mca::ResourcePressureView>(*STI, *IP, Insts));
693694

694695
if (!runPipeline(*P))
695696
return 1;

0 commit comments

Comments
 (0)