From b52dd7a453e041ca79f0c440dcd657e0b9225828 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sun, 5 Mar 2023 08:36:41 -0800 Subject: add `Opcode::is_jcc`, `Opcode::is_setcc`, and `Opcode::is_cmovcc` helpers this request/suggestion comes from [github](https://github.com/iximeow/yaxpeax-x86/issues/29)! thank you! --- test/long_mode/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'test/long_mode/mod.rs') diff --git a/test/long_mode/mod.rs b/test/long_mode/mod.rs index eeee155..12d5f96 100644 --- a/test/long_mode/mod.rs +++ b/test/long_mode/mod.rs @@ -2,6 +2,7 @@ extern crate rand; mod regspec; mod operand; +mod opcode; #[cfg(feature="fmt")] mod display; #[cfg(feature="std")] -- cgit v1.1