[llvm] r345750 - [llvm-mca] Remove the verb 'assemble' from a few options in help. NFC.
Matt Davis via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 31 10:47:25 PDT 2018
Author: mattd
Date: Wed Oct 31 10:47:25 2018
New Revision: 345750
URL: http://llvm.org/viewvc/llvm-project?rev=345750&view=rev
Log:
[llvm-mca] Remove the verb 'assemble' from a few options in help. NFC.
* MCA does not assemble anything.
* Ran clang-format.
Modified:
llvm/trunk/tools/llvm-mca/llvm-mca.cpp
Modified: llvm/trunk/tools/llvm-mca/llvm-mca.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-mca/llvm-mca.cpp?rev=345750&r1=345749&r2=345750&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-mca/llvm-mca.cpp (original)
+++ llvm/trunk/tools/llvm-mca/llvm-mca.cpp Wed Oct 31 10:47:25 2018
@@ -69,15 +69,13 @@ static cl::opt<std::string> OutputFilena
cl::value_desc("filename"));
static cl::opt<std::string>
- ArchName("march",
- cl::desc("Target arch to assemble for, "
- "see -version for available targets"),
+ ArchName("march", cl::desc("Target architecture. "
+ "See -version for available targets"),
cl::cat(ToolOptions));
static cl::opt<std::string>
TripleName("mtriple",
- cl::desc("Target triple to assemble for, "
- "see -version for available targets"),
+ cl::desc("Target triple. See -version for available targets"),
cl::cat(ToolOptions));
static cl::opt<std::string>
@@ -503,17 +501,20 @@ int main(int argc, char **argv) {
ArrayRef<MCInst> Insts = Region->getInstructions();
std::vector<std::unique_ptr<mca::Instruction>> LoweredSequence;
for (const MCInst &MCI : Insts) {
- llvm::Expected<std::unique_ptr<mca::Instruction>> Inst = IB.createInstruction(MCI);
+ llvm::Expected<std::unique_ptr<mca::Instruction>> Inst =
+ IB.createInstruction(MCI);
if (!Inst) {
- if (auto NewE = handleErrors(Inst.takeError(),
- [&IP, &STI](const mca::InstructionError<MCInst> &IE) {
- std::string InstructionStr;
- raw_string_ostream SS(InstructionStr);
- WithColor::error() << IE.Message << '\n';
- IP->printInst(&IE.Inst, SS, "", *STI);
- SS.flush();
- WithColor::note() << "instruction: " << InstructionStr << '\n';
- })) {
+ if (auto NewE = handleErrors(
+ Inst.takeError(),
+ [&IP, &STI](const mca::InstructionError<MCInst> &IE) {
+ std::string InstructionStr;
+ raw_string_ostream SS(InstructionStr);
+ WithColor::error() << IE.Message << '\n';
+ IP->printInst(&IE.Inst, SS, "", *STI);
+ SS.flush();
+ WithColor::note() << "instruction: " << InstructionStr
+ << '\n';
+ })) {
// Default case.
WithColor::error() << toString(std::move(NewE));
}
@@ -523,8 +524,7 @@ int main(int argc, char **argv) {
LoweredSequence.emplace_back(std::move(Inst.get()));
}
- mca::SourceMgr S(LoweredSequence,
- PrintInstructionTables ? 1 : Iterations);
+ mca::SourceMgr S(LoweredSequence, PrintInstructionTables ? 1 : Iterations);
if (PrintInstructionTables) {
// Create a pipeline, stages, and a printer.
More information about the llvm-commits
mailing list