[meta] Add some Debug derives

This commit is contained in:
bjorn3
2019-06-29 16:23:07 +02:00
committed by Dan Gohman
parent a43a3a5e9f
commit 83ac6dd4d4
3 changed files with 6 additions and 2 deletions

View File

@@ -79,12 +79,14 @@ impl InstructionGroup {
}
}
#[derive(Debug)]
pub struct PolymorphicInfo {
pub use_typevar_operand: bool,
pub ctrl_typevar: TypeVar,
pub other_typevars: Vec<TypeVar>,
}
#[derive(Debug)]
pub struct InstructionContent {
/// Instruction mnemonic, also becomes opcode name.
pub name: String,
@@ -139,7 +141,7 @@ pub struct InstructionContent {
pub writes_cpu_flags: bool,
}
#[derive(Clone)]
#[derive(Clone, Debug)]
pub struct Instruction {
content: Rc<InstructionContent>,
}