aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
diff options
context:
space:
mode:
authorPhilipp Tomsich <philipp.tomsich@vrull.eu>2023-02-04 17:59:32 +0100
committerPhilipp Tomsich <philipp.tomsich@vrull.eu>2023-02-06 10:12:34 +0100
commitba8b8a73fcb6b830e63cd8e20c6e13b2a14d69bf (patch)
tree0eba302f6a20b918613919e9f612173e98898fa6 /llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
parentb6a2e33500cd29c8cce40acd08ff1dbd7559656f (diff)
downloadllvm-ba8b8a73fcb6b830e63cd8e20c6e13b2a14d69bf.zip
llvm-ba8b8a73fcb6b830e63cd8e20c6e13b2a14d69bf.tar.gz
llvm-ba8b8a73fcb6b830e63cd8e20c6e13b2a14d69bf.tar.bz2
[RISCV][NFC] Update debug message for XTHeadVdot
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.
Diffstat (limited to 'llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp')
-rw-r--r--llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp b/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
index ea80d89..c999c91 100644
--- a/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
+++ b/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
@@ -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) {