diff --git a/lib/codegen/meta-python/gen_instr.py b/lib/codegen/meta-python/gen_instr.py index a59f5d71da..4b73b95bc6 100644 --- a/lib/codegen/meta-python/gen_instr.py +++ b/lib/codegen/meta-python/gen_instr.py @@ -107,11 +107,10 @@ def gen_instruction_data(fmt): """ Generate the InstructionData enum. - Every variant must contain `opcode` and `ty` fields. An instruction that - doesn't produce a value should have its `ty` field set to `VOID`. The size - of `InstructionData` should be kept at 16 bytes on 64-bit architectures. If - more space is needed to represent an instruction, use a `Box` to - store the additional information out of line. + Every variant must contain an `opcode` field. The size of `InstructionData` + should be kept at 16 bytes on 64-bit architectures. If more space is needed + to represent an instruction, use a `Box` to store the additional + information out of line. """ fmt.line('#[derive(Clone, Debug)]')