summaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2007-09-09 16:02:17 +0000
committerH.J. Lu <hjl@lucon.org>2007-09-09 16:02:17 +0000
commit08c5b86714460a251e36cc8a622986fd88f99b2c (patch)
tree32ca93697fc6004f08a687207e212cdb9285b89b /opcodes
parent631f81e4e40a5f027c10117923eaa3a7457f24f2 (diff)
downloadgdb-08c5b86714460a251e36cc8a622986fd88f99b2c.tar.gz
2007-09-09 H.J. Lu <hongjiu.lu@intel.com>
* i386-gen.c (main): Remove the local variable, unused.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog4
-rw-r--r--opcodes/i386-gen.c14
2 files changed, 11 insertions, 7 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 0e91e22ab43..6ba7d492b86 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,7 @@
+2007-09-09 H.J. Lu <hongjiu.lu@intel.com>
+
+ * i386-gen.c (main): Remove the local variable, unused.
+
2007-09-08 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.am: Run "make dep-am".
diff --git a/opcodes/i386-gen.c b/opcodes/i386-gen.c
index 44bf052e99c..36009cd857b 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]),