diff options
-rw-r--r-- | src/long_mode/display.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/long_mode/display.rs b/src/long_mode/display.rs index 6d9969d..4725154 100644 --- a/src/long_mode/display.rs +++ b/src/long_mode/display.rs @@ -4792,14 +4792,6 @@ fn contextualize_intel<T: fmt::Write, Y: YaxColors>(instr: &Instruction, colors: out.write_str(instr.opcode.name())?; - if instr.opcode == Opcode::XBEGIN { - if (instr.imm as i32) >= 0 { - return write!(out, " $+{}", colors.number(signed_i32_hex(instr.imm as i32))); - } else { - return write!(out, " ${}", colors.number(signed_i32_hex(instr.imm as i32))); - } - } - if instr.operand_count > 0 { out.write_str(" ")?; |