diff options
-rw-r--r-- | arch/x86/tools/gen-insn-attr-x86.awk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/tools/gen-insn-attr-x86.awk b/arch/x86/tools/gen-insn-attr-x86.awk index ddcf39b1a18d..e6773dc8ac41 100644 --- a/arch/x86/tools/gen-insn-attr-x86.awk +++ b/arch/x86/tools/gen-insn-attr-x86.awk | |||
@@ -356,7 +356,7 @@ END { | |||
356 | exit 1 | 356 | exit 1 |
357 | # print escape opcode map's array | 357 | # print escape opcode map's array |
358 | print "/* Escape opcode map array */" | 358 | print "/* Escape opcode map array */" |
359 | print "const insn_attr_t const *inat_escape_tables[INAT_ESC_MAX + 1]" \ | 359 | print "const insn_attr_t * const inat_escape_tables[INAT_ESC_MAX + 1]" \ |
360 | "[INAT_LSTPFX_MAX + 1] = {" | 360 | "[INAT_LSTPFX_MAX + 1] = {" |
361 | for (i = 0; i < geid; i++) | 361 | for (i = 0; i < geid; i++) |
362 | for (j = 0; j < max_lprefix; j++) | 362 | for (j = 0; j < max_lprefix; j++) |
@@ -365,7 +365,7 @@ END { | |||
365 | print "};\n" | 365 | print "};\n" |
366 | # print group opcode map's array | 366 | # print group opcode map's array |
367 | print "/* Group opcode map array */" | 367 | print "/* Group opcode map array */" |
368 | print "const insn_attr_t const *inat_group_tables[INAT_GRP_MAX + 1]"\ | 368 | print "const insn_attr_t * const inat_group_tables[INAT_GRP_MAX + 1]"\ |
369 | "[INAT_LSTPFX_MAX + 1] = {" | 369 | "[INAT_LSTPFX_MAX + 1] = {" |
370 | for (i = 0; i < ggid; i++) | 370 | for (i = 0; i < ggid; i++) |
371 | for (j = 0; j < max_lprefix; j++) | 371 | for (j = 0; j < max_lprefix; j++) |
@@ -374,7 +374,7 @@ END { | |||
374 | print "};\n" | 374 | print "};\n" |
375 | # print AVX opcode map's array | 375 | # print AVX opcode map's array |
376 | print "/* AVX opcode map array */" | 376 | print "/* AVX opcode map array */" |
377 | print "const insn_attr_t const *inat_avx_tables[X86_VEX_M_MAX + 1]"\ | 377 | print "const insn_attr_t * const inat_avx_tables[X86_VEX_M_MAX + 1]"\ |
378 | "[INAT_LSTPFX_MAX + 1] = {" | 378 | "[INAT_LSTPFX_MAX + 1] = {" |
379 | for (i = 0; i < gaid; i++) | 379 | for (i = 0; i < gaid; i++) |
380 | for (j = 0; j < max_lprefix; j++) | 380 | for (j = 0; j < max_lprefix; j++) |