[MC][AArch64] Remove bogus whitespace of markup'd immediate.
authorPaul Walker <paul.walker@arm.com>
Thu, 8 Dec 2022 17:54:08 +0000 (17:54 +0000)
committerPaul Walker <paul.walker@arm.com>
Thu, 8 Dec 2022 18:26:38 +0000 (18:26 +0000)
llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp

index b8fd616..8c3fdb1 100644 (file)
@@ -1288,7 +1288,7 @@ static void printMemExtendImpl(bool SignExtend, bool DoShift, unsigned Width,
     O << " ";
     if (UseMarkup)
       O << "<imm:";
-    O << " #" << Log2_32(Width / 8);
+    O << "#" << Log2_32(Width / 8);
     if (UseMarkup)
       O << ">";
   }