diff options
author | Masami Hiramatsu <mhiramat@redhat.com> | 2009-10-27 16:42:11 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-10-29 03:47:45 -0400 |
commit | 04d46c1b13b02e1e5c24eb270a01cf3f94ee4d04 (patch) | |
tree | b5a4b8c1229b1b1defe2d6671319ff0cfbe21ada /arch/x86/lib | |
parent | 7f387d3f2421781610588faa2f49ae5f1737b137 (diff) |
x86: Merge INAT_REXPFX into INAT_PFX_*
Merge INAT_REXPFX into INAT_PFX_* macro and rename it to
INAT_PFX_REX.
Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Jim Keniston <jkenisto@us.ibm.com>
Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Frank Ch. Eigler <fche@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jason Baron <jbaron@redhat.com>
Cc: K.Prasad <prasad@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
LKML-Reference: <20091027204211.30545.58090.stgit@harusame>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/lib')
-rw-r--r-- | arch/x86/lib/insn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/insn.c b/arch/x86/lib/insn.c index dfd56a30053f..9f483179a8a6 100644 --- a/arch/x86/lib/insn.c +++ b/arch/x86/lib/insn.c | |||
@@ -69,7 +69,7 @@ void insn_get_prefixes(struct insn *insn) | |||
69 | lb = 0; | 69 | lb = 0; |
70 | b = peek_next(insn_byte_t, insn); | 70 | b = peek_next(insn_byte_t, insn); |
71 | attr = inat_get_opcode_attribute(b); | 71 | attr = inat_get_opcode_attribute(b); |
72 | while (inat_is_prefix(attr)) { | 72 | while (inat_is_legacy_prefix(attr)) { |
73 | /* Skip if same prefix */ | 73 | /* Skip if same prefix */ |
74 | for (i = 0; i < nb; i++) | 74 | for (i = 0; i < nb; i++) |
75 | if (prefixes->bytes[i] == b) | 75 | if (prefixes->bytes[i] == b) |