Skip to content

Commit 286518b

Browse files
authored
Fixed formatting
1 parent a8c75e6 commit 286518b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -314,20 +314,20 @@ unsigned RISCVInstrumentManager::getSchedClassID(
314314
// Not a RVV instr
315315
if (!VPOpcode) {
316316
LDBG() << "RVCB: Could not find PseudoInstruction for Opcode "
317-
<< MCII.getName(Opcode) << ", LMUL=" << (LI ? LI->getData() : "Unspecified")
318-
<< ", SEW=" << (SI ? SI->getData() :
319-
"Unspecified")
320-
<< ". Ignoring instrumentation and using original SchedClassID="
321-
<< SchedClassID << '\n';
317+
<< MCII.getName(Opcode)
318+
<< ", LMUL=" << (LI ? LI->getData() : "Unspecified")
319+
<< ", SEW=" << (SI ? SI->getData() : "Unspecified")
320+
<< ". Ignoring instrumentation and using original SchedClassID="
321+
<< SchedClassID << '\n';
322322
return SchedClassID;
323323
}
324324

325325
// Override using pseudo
326326
LDBG() << "RVCB: Found Pseudo Instruction for Opcode " << MCII.getName(Opcode)
327-
<< ", LMUL=" << LI->getData() << ", SEW=" << (SI ? SI->getData() :
328-
"Unspecified")
329-
<< ". Overriding original SchedClassID=" << SchedClassID
330-
<< " with " << MCII.getName(*VPOpcode) << '\n';
327+
<< ", LMUL=" << LI->getData()
328+
<< ", SEW=" << (SI ? SI->getData() : "Unspecified")
329+
<< ". Overriding original SchedClassID=" << SchedClassID << " with "
330+
<< MCII.getName(*VPOpcode) << '\n';
331331
return MCII.get(*VPOpcode).getSchedClass();
332332
}
333333

0 commit comments

Comments
 (0)