mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 20:49:43 +00:00
2007-09-09 H.J. Lu <hongjiu.lu@intel.com>
* i386-gen.c (main): Remove the local variable, unused.
This commit is contained in:
parent
6d18b86b5d
commit
8b40d5948e
@ -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".
|
||||
|
@ -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]),
|
||||
|
Loading…
Reference in New Issue
Block a user