mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-20 06:15:09 +08:00
* s390-mkopc.c (main): Exit with error 1 if sscanf fails
to parse all 6 parameters.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2010-09-30 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||||
|
|
||||||
|
* s390-mkopc.c (main): Exit with error 1 if sscanf fails
|
||||||
|
to parse all 6 parameters.
|
||||||
|
|
||||||
2010-09-28 Pierre Muller <muller@ics.u-strasbg.fr>
|
2010-09-28 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||||
|
|
||||||
* s390-mkopc.c (main): Change description array size to 80.
|
* s390-mkopc.c (main): Change description array size to 80.
|
||||||
|
@ -393,7 +393,10 @@ main (void)
|
|||||||
insertExpandedMnemonic (opcode, mnemonic, format, min_cpu, mode_bits);
|
insertExpandedMnemonic (opcode, mnemonic, format, min_cpu, mode_bits);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
fprintf (stderr, "Couldn't scan line %s\n", currentLine);
|
fprintf (stderr, "Couldn't scan line %s\n", currentLine);
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dumpTable ();
|
dumpTable ();
|
||||||
|
Reference in New Issue
Block a user