aboutsummaryrefslogtreecommitdiff
path: root/llvm/utils/TableGen/DecoderEmitter.cpp
diff options
context:
space:
mode:
authorRahul Joshi <rjoshi@nvidia.com>2025-08-21 17:20:05 -0700
committerGitHub <noreply@github.com>2025-08-21 17:20:05 -0700
commit4eeeb8a01e978a1c084b6f73f47ba9e45484ddb3 (patch)
tree0cf73e060518af18117a5c1901a4d21e075380bd /llvm/utils/TableGen/DecoderEmitter.cpp
parentc97c6869b6a6a33378f22971d626586d4850bac6 (diff)
downloadllvm-4eeeb8a01e978a1c084b6f73f47ba9e45484ddb3.zip
llvm-4eeeb8a01e978a1c084b6f73f47ba9e45484ddb3.tar.gz
llvm-4eeeb8a01e978a1c084b6f73f47ba9e45484ddb3.tar.bz2
[NFC][MC][Decoder] Fix off-by-one indentation in generated code (#154855)
Diffstat (limited to 'llvm/utils/TableGen/DecoderEmitter.cpp')
-rw-r--r--llvm/utils/TableGen/DecoderEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/DecoderEmitter.cpp b/llvm/utils/TableGen/DecoderEmitter.cpp
index 4bd9b5f..740035a 100644
--- a/llvm/utils/TableGen/DecoderEmitter.cpp
+++ b/llvm/utils/TableGen/DecoderEmitter.cpp
@@ -2081,7 +2081,7 @@ static DecodeStatus decodeInstruction(const uint8_t DecodeTable[], MCInst &MI,
OS << ") {\n";
if (HasCheckPredicate)
OS << " const FeatureBitset &Bits = STI.getFeatureBits();\n";
- OS << " using namespace llvm::MCD;\n";
+ OS << " using namespace llvm::MCD;\n";
OS << R"(
const uint8_t *Ptr = DecodeTable;