File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
llvm/lib/Target/RISCV/MCA Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,16 +87,16 @@ bool RISCVInstrumentManager::supportsInstrumentType(
8787 llvm::StringRef Type) const {
8888 return Type == RISCVLMULInstrument::DESC_NAME ||
8989 Type == RISCVSEWInstrument::DESC_NAME ||
90- InstrumentManager::supportsInstrumentType (Type);;
90+ InstrumentManager::supportsInstrumentType (Type);
9191}
9292
9393UniqueInstrument
9494RISCVInstrumentManager::createInstrument (llvm::StringRef Desc,
9595 llvm::StringRef Data) {
9696 if (Desc == RISCVLMULInstrument::DESC_NAME) {
9797 if (!RISCVLMULInstrument::isDataValid (Data)) {
98- LLVM_DEBUG (dbgs () << " RVCB: Bad data for instrument kind " << Desc << " : "
99- << Data << ' \n ' );
98+ LLVM_DEBUG (dbgs () << " RVCB: Bad data for instrument kind " << Desc
99+ << " : " << Data << ' \n ' );
100100 return nullptr ;
101101 }
102102 return std::make_unique<RISCVLMULInstrument>(Data);
You can’t perform that action at this time.
0 commit comments