Skip to content

Commit e17a431

Browse files
committed
Review feedback
1 parent dab1467 commit e17a431

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/test/TableGen/DecoderEmitterBitwidthSpecialization.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ let Namespace = "arch" in {
2020
def Regs : RegisterClass<"Regs", [i32], 32, (add R0, R1, R2, R3)>;
2121

2222
// Bit 0 of the encoding determines the size (8 or 16 bits).
23-
// Bits {3..1} define the number define the number of operands encoded.
23+
// Bits {3..1} define the number of operands encoded.
2424
class Instruction8Bit<int NumOps> : Instruction {
2525
let Size = 1;
2626
let OutOperandList = (outs);

llvm/utils/TableGen/DecoderEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2492,7 +2492,7 @@ namespace {
24922492
Encoding.getBitWidth();
24932493
}
24942494

2495-
// For variable instruction, we emit a instruction length table to let the
2495+
// For variable instruction, we emit an instruction length table to let the
24962496
// decoder know how long the instructions are. You can see example usage in
24972497
// M68k's disassembler.
24982498
emitInstrLenTable(OS, InstrLen);

0 commit comments

Comments
 (0)