[NFC][MC][Decoder] Fix off-by-one indentation in generated code (#154855)

This commit is contained in:
Rahul Joshi 2025-08-21 17:20:05 -07:00 committed by GitHub
parent c97c6869b6
commit 4eeeb8a01e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2081,7 +2081,7 @@ static DecodeStatus decodeInstruction(const uint8_t DecodeTable[], MCInst &MI,
OS << ") {\n"; OS << ") {\n";
if (HasCheckPredicate) if (HasCheckPredicate)
OS << " const FeatureBitset &Bits = STI.getFeatureBits();\n"; OS << " const FeatureBitset &Bits = STI.getFeatureBits();\n";
OS << " using namespace llvm::MCD;\n"; OS << " using namespace llvm::MCD;\n";
OS << R"( OS << R"(
const uint8_t *Ptr = DecodeTable; const uint8_t *Ptr = DecodeTable;