[RISCV][NFC] Update debug message for XTHeadVdot
authorPhilipp Tomsich <philipp.tomsich@vrull.eu>
Sat, 4 Feb 2023 16:59:32 +0000 (17:59 +0100)
committerPhilipp Tomsich <philipp.tomsich@vrull.eu>
Mon, 6 Feb 2023 09:12:34 +0000 (10:12 +0100)
As we prepare the tree to add more vendor-defined extensions that are
originating with T-Head, the debug message announcing the XTheadVdot
decoder namespace should refer to XTHeadVdot instead of all T-Head
custom extensions.

llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp

index ea80d899c1277a36da425146a076295dbaf6096b..c999c91dad6ce8a5edf62bb1f09bf2aaa6f4ac99 100644 (file)
@@ -491,7 +491,7 @@ DecodeStatus RISCVDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
       }
     }
     if (STI.getFeatureBits()[RISCV::FeatureVendorXTHeadVdot]) {
-      LLVM_DEBUG(dbgs() << "Trying T-Head custom opcode table:\n");
+      LLVM_DEBUG(dbgs() << "Trying XTHeadVdot custom opcode table:\n");
       Result =
           decodeInstruction(DecoderTableTHeadV32, MI, Insn, Address, this, STI);
       if (Result != MCDisassembler::Fail) {