aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2023-03-05 08:36:41 -0800
committeriximeow <me@iximeow.net>2023-03-05 08:36:41 -0800
commitb52dd7a453e041ca79f0c440dcd657e0b9225828 (patch)
tree785631b2c58e2dad4bf3f6a11ab55ee28e109bd4 /CHANGELOG
parent72f8f6677719a8ad7c8e61e4d629f47deef746cc (diff)
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!
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 585fcfa..f2b4369 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -4,6 +4,10 @@
* this "getter" would in fact set the selected segment to `cs`. it has never
actually returned a `bool`, like other selector-checking methods on
`Prefixes`.
+* add `Opcode::is_jcc`, `Opcode::is_setcc`, and `Opcode::is_cmovcc` helpers
+ * discovered that `jna` and `jnb` are named what they are, instead of
+ `jbe`/`jae` like their `setcc` an `cmovcc` counterparts. sorry. these will
+ become `jbe` and `jae` in 2.x.
## 1.1.5
* fix several typos across crate docs - thank you Bruce! (aka github user waywardmonkeys)