File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
llvm/lib/Target/RISCV/MCA Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments