Skip to content

Commit f8db788

Browse files
authored
Fixed formatting
1 parent 21ad7e2 commit f8db788

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/RISCV/MCA/RISCVCustomBehaviour.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

9393
UniqueInstrument
9494
RISCVInstrumentManager::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);

0 commit comments

Comments
 (0)