diff options
author | Andrea Di Biagio <Andrea_DiBiagio@sn.scee.net> | 2018-04-25 10:27:30 +0000 |
---|---|---|
committer | Andrea Di Biagio <Andrea_DiBiagio@sn.scee.net> | 2018-04-25 10:27:30 +0000 |
commit | 641cca3ddfe373e6fe75d47f5ee516bfca2bc50d (patch) | |
tree | fa0b1346e12479e2370cf888e4d0ff4f84301ced /llvm/tools/llvm-mca/llvm-mca.cpp | |
parent | eac9301cdbf529202da98c58faadf84b55655731 (diff) | |
download | bcm5719-llvm-641cca3ddfe373e6fe75d47f5ee516bfca2bc50d.tar.gz bcm5719-llvm-641cca3ddfe373e6fe75d47f5ee516bfca2bc50d.zip |
[llvm-mca] run clang-format on a bunch of files. NFC
llvm-svn: 330811
Diffstat (limited to 'llvm/tools/llvm-mca/llvm-mca.cpp')
-rw-r--r-- | llvm/tools/llvm-mca/llvm-mca.cpp | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/llvm/tools/llvm-mca/llvm-mca.cpp b/llvm/tools/llvm-mca/llvm-mca.cpp index 0e1d18ee09e..d0f942a6dde 100644 --- a/llvm/tools/llvm-mca/llvm-mca.cpp +++ b/llvm/tools/llvm-mca/llvm-mca.cpp @@ -38,10 +38,10 @@ #include "llvm/MC/MCParser/MCTargetAsmParser.h" #include "llvm/MC/MCRegisterInfo.h" #include "llvm/MC/MCStreamer.h" -#include "llvm/Support/Host.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/ErrorOr.h" #include "llvm/Support/FileSystem.h" +#include "llvm/Support/Host.h" #include "llvm/Support/InitLLVM.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/SourceMgr.h" @@ -97,20 +97,18 @@ static cl::opt<bool> cl::desc("Print register file statistics"), cl::init(false)); -static cl::opt<bool> - PrintDispatchStats("dispatch-stats", - cl::desc("Print dispatch statistics"), - cl::init(false)); +static cl::opt<bool> PrintDispatchStats("dispatch-stats", + cl::desc("Print dispatch statistics"), + cl::init(false)); -static cl::opt<bool> - PrintSchedulerStats("scheduler-stats", - cl::desc("Print scheduler statistics"), - cl::init(false)); +static cl::opt<bool> PrintSchedulerStats("scheduler-stats", + cl::desc("Print scheduler statistics"), + cl::init(false)); static cl::opt<bool> PrintRetireStats("retire-stats", - cl::desc("Print retire control unit statistics"), - cl::init(false)); + cl::desc("Print retire control unit statistics"), + cl::init(false)); static cl::opt<bool> PrintResourcePressureView("resource-pressure", |