From 68b2040ba25f8b206c4af6fcf27662d83fc4beed Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 28 Mar 2018 16:20:46 -0700 Subject: [PATCH] Document that opcodes.rs contains `InstructionData`. --- lib/cretonne/src/ir/instructions.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cretonne/src/ir/instructions.rs b/lib/cretonne/src/ir/instructions.rs index bb09e24834..b25e5a069b 100644 --- a/lib/cretonne/src/ir/instructions.rs +++ b/lib/cretonne/src/ir/instructions.rs @@ -31,6 +31,7 @@ pub type ValueListPool = entity::ListPool; // Include code generated by `lib/cretonne/meta/gen_instr.py`. This file contains: // // - The `pub enum InstructionFormat` enum with all the instruction formats. +// - The `pub enum InstructionData` enum with all the instruction data fields. // - The `pub enum Opcode` definition with all known opcodes, // - The `const OPCODE_FORMAT: [InstructionFormat; N]` table. // - The private `fn opcode_name(Opcode) -> &'static str` function, and