aboutsummaryrefslogtreecommitdiff
path: root/opcodes/i386-gen.c
diff options
context:
space:
mode:
Diffstat (limited to 'opcodes/i386-gen.c')
-rw-r--r--opcodes/i386-gen.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/opcodes/i386-gen.c b/opcodes/i386-gen.c
index 44bf052..36009cd 100644
--- a/opcodes/i386-gen.c
+++ b/opcodes/i386-gen.c
@@ -887,7 +887,7 @@ main (int argc, char **argv)
{
extern int chdir (char *);
char *srcdir = NULL;
- int c, unused;
+ int c;
FILE *table;
program_name = *argv;
@@ -924,16 +924,16 @@ main (int argc, char **argv)
/* Check the unused bitfield in i386_cpu_flags. */
#ifndef CpuUnused
- unused = CpuNumOfBits - CpuMax - 1;
- if (unused)
- fail (_("%d unused bits in i386_cpu_flags.\n"), unused);
+ c = CpuNumOfBits - CpuMax - 1;
+ if (c)
+ fail (_("%d unused bits in i386_cpu_flags.\n"), c);
#endif
/* Check the unused bitfield in i386_operand_type. */
#ifndef OTUnused
- unused = OTNumOfBits - OTMax - 1;
- if (unused)
- fail (_("%d unused bits in i386_operand_type.\n"), unused);
+ c = OTNumOfBits - OTMax - 1;
+ if (c)
+ fail (_("%d unused bits in i386_operand_type.\n"), c);
#endif
qsort (cpu_flags, ARRAY_SIZE (cpu_flags), sizeof (cpu_flags [0]),