File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
llvm/lib/Target/VE/AsmParser Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -422,7 +422,8 @@ class VEOperand : public MCParsedAsmOperand {
422422 break ;
423423 case k_MemoryRegRegImm:
424424 assert (getMemOffset () != nullptr );
425- OS << " Mem: #" << getMemBase ().id () << " +#" << getMemIndexReg ().id () << " +" ;
425+ OS << " Mem: #" << getMemBase ().id () << " +#" << getMemIndexReg ().id ()
426+ << " +" ;
426427 MAI.printExpr (OS, *getMemOffset ());
427428 OS << " \n " ;
428429 break ;
@@ -723,7 +724,8 @@ class VEOperand : public MCParsedAsmOperand {
723724 }
724725
725726 static std::unique_ptr<VEOperand>
726- MorphToMEMrri (MCRegister Base, MCRegister Index, std::unique_ptr<VEOperand> Op) {
727+ MorphToMEMrri (MCRegister Base, MCRegister Index,
728+ std::unique_ptr<VEOperand> Op) {
727729 const MCExpr *Imm = Op->getImm ();
728730 Op->Kind = k_MemoryRegRegImm;
729731 Op->Mem .Base = Base;
You can’t perform that action at this time.
0 commit comments