diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-08-03 14:43:24 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-08-03 14:43:24 -0700 |
commit | b179c3f4cd1e89872de34d70105f703e72377029 (patch) | |
tree | 2a36f65546121a6ff9a51e3b775ba83d0e2ffd9d /src | |
parent | e98ccd309bb8eb48153d2400f11a08341e9a2271 (diff) | |
download | gem5-b179c3f4cd1e89872de34d70105f703e72377029.tar.xz |
X86: Make hint nops consume their modrm byte.
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/x86/predecoder_tables.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/predecoder_tables.cc b/src/arch/x86/predecoder_tables.cc index f8aff39f1..bcd5face6 100644 --- a/src/arch/x86/predecoder_tables.cc +++ b/src/arch/x86/predecoder_tables.cc @@ -123,7 +123,7 @@ namespace X86ISA { //LSB // MSB 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | A | B | C | D | E | F /* 0 */ 1 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 0 , 1, -/* 1 */ 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0, +/* 1 */ 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1, /* 2 */ 1 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1, /* 3 */ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0, /* 4 */ 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1, |