Skip to content

Commit 4eeeb8a

Browse files
authored
[NFC][MC][Decoder] Fix off-by-one indentation in generated code (#154855)
1 parent c97c686 commit 4eeeb8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/utils/TableGen/DecoderEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2081,7 +2081,7 @@ static DecodeStatus decodeInstruction(const uint8_t DecodeTable[], MCInst &MI,
20812081
OS << ") {\n";
20822082
if (HasCheckPredicate)
20832083
OS << " const FeatureBitset &Bits = STI.getFeatureBits();\n";
2084-
OS << " using namespace llvm::MCD;\n";
2084+
OS << " using namespace llvm::MCD;\n";
20852085

20862086
OS << R"(
20872087
const uint8_t *Ptr = DecodeTable;

0 commit comments

Comments
 (0)