From ea1a81b16ec1af30cb08e29d653a4a309b709675 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Mon, 24 Sep 2007 15:55:20 -0700 Subject: [PATCH] 0F0F is a 3Dnow! prefix; remove from prefix list 3Dnow! prefixes cannot be disambiguated via pointer chasing, since the third byte of the opcode field follows the EA. --- insns.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/insns.pl b/insns.pl index 71af258e..90c00c07 100644 --- a/insns.pl +++ b/insns.pl @@ -9,7 +9,7 @@ # Opcode prefixes which need their own opcode tables # LONGER PREFIXES FIRST! -@disasm_prefixes = qw(0F0F 0F24 0F25 0F38 0F3A 0F7A 0FA6 0FA7 0F); +@disasm_prefixes = qw(0F24 0F25 0F38 0F3A 0F7A 0FA6 0FA7 0F); print STDERR "Reading insns.dat...\n";