[llvm] efb880d - [TableGen] Fix incorrect comment. NFC
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 3 14:37:45 PST 2025
Author: Craig Topper
Date: 2025-03-03T14:37:37-08:00
New Revision: efb880de11f8fa3646c04032c0a2c9bded1935d7
URL: https://github.com/llvm/llvm-project/commit/efb880de11f8fa3646c04032c0a2c9bded1935d7
DIFF: https://github.com/llvm/llvm-project/commit/efb880de11f8fa3646c04032c0a2c9bded1935d7.diff
LOG: [TableGen] Fix incorrect comment. NFC
Added:
Modified:
llvm/utils/TableGen/DecoderEmitter.cpp
Removed:
################################################################################
diff --git a/llvm/utils/TableGen/DecoderEmitter.cpp b/llvm/utils/TableGen/DecoderEmitter.cpp
index 947817aa39655..8947e887eaa3e 100644
--- a/llvm/utils/TableGen/DecoderEmitter.cpp
+++ b/llvm/utils/TableGen/DecoderEmitter.cpp
@@ -682,7 +682,7 @@ static void resolveTableFixups(DecoderTable &Table, const FixupList &Fixups,
I != E; ++I) {
// Calculate the distance from the byte following the fixup entry byte
// to the destination. The Target is calculated from after the 24-bit
- // NumToSkip entry itself, so subtract two from the displacement here
+ // NumToSkip entry itself, so subtract three from the displacement here
// to account for that.
uint32_t FixupIdx = *I;
uint32_t Delta = DestIdx - FixupIdx - 3;
More information about the llvm-commits
mailing list