diff options
author | iximeow <me@iximeow.net> | 2021-07-04 14:23:45 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-07-04 14:23:45 -0700 |
commit | ff9760b94936de929777f9730ac1568ac26bf4d5 (patch) | |
tree | 53be09b02c0f3e3c7edcfe02038cd31f3dbc0883 /test/protected_mode | |
parent | e15ef43a243ae0e0db369cead1786f4f2c4e690e (diff) |
handle vzeroupper/vzeroall, reject vzero* with nonzero vvvv
Diffstat (limited to 'test/protected_mode')
-rw-r--r-- | test/protected_mode/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/protected_mode/mod.rs b/test/protected_mode/mod.rs index 65e112f..28682ef 100644 --- a/test/protected_mode/mod.rs +++ b/test/protected_mode/mod.rs @@ -2881,6 +2881,7 @@ fn test_x87() { #[test] fn test_mishegos_finds() { + test_invalid(&[0xc5, 0x8c, 0x77]); test_display(&[0x0f, 0xfc, 0xaf, 0x40, 0x38, 0x25, 0xbf], "paddb mm5, qword [edi - 0x40dac7c0]"); test_invalid(&[0xf3, 0x67, 0x0f, 0x3a, 0xf0, 0xfb, 0xb4]); test_display(&[0x65, 0x66, 0x0f, 0x01, 0xdc], "stgi"); |