* ar.c (usage): Fix C conformance issue.
* config/tc-i386-intel.c (i386_intel_operand): Fixed signed vs unsigned comparison.
This commit is contained in:
parent
623cc28540
commit
faf786e668
@ -1,3 +1,7 @@
|
|||||||
|
2013-07-18 Jim Thomas <thomas@cfht.hawaii.edu>
|
||||||
|
|
||||||
|
* ar.c (usage): Fix C conformance issue.
|
||||||
|
|
||||||
2013-07-18 Nick Clifton <nickc@redhat.com>
|
2013-07-18 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* doc/binutils.texi (nm, objdump): Remove bogus links to STABS
|
* doc/binutils.texi (nm, objdump): Remove bogus links to STABS
|
||||||
|
@ -243,8 +243,6 @@ usage (int help)
|
|||||||
{
|
{
|
||||||
FILE *s;
|
FILE *s;
|
||||||
|
|
||||||
s = help ? stdout : stderr;
|
|
||||||
|
|
||||||
#if BFD_SUPPORTS_PLUGINS
|
#if BFD_SUPPORTS_PLUGINS
|
||||||
/* xgettext:c-format */
|
/* xgettext:c-format */
|
||||||
const char *command_line
|
const char *command_line
|
||||||
@ -257,6 +255,8 @@ usage (int help)
|
|||||||
= _("Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV]"
|
= _("Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV]"
|
||||||
" [member-name] [count] archive-file file...\n");
|
" [member-name] [count] archive-file file...\n");
|
||||||
#endif
|
#endif
|
||||||
|
s = help ? stdout : stderr;
|
||||||
|
|
||||||
fprintf (s, command_line, program_name);
|
fprintf (s, command_line, program_name);
|
||||||
|
|
||||||
/* xgettext:c-format */
|
/* xgettext:c-format */
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2013-07-18 Jim Thomas <thomas@cfht.hawaii.edu>
|
||||||
|
|
||||||
|
* config/tc-i386-intel.c (i386_intel_operand): Fixed signed vs
|
||||||
|
unsigned comparison.
|
||||||
|
|
||||||
2013-07-18 Sandeep Kumar Singh <Sandeep.Singh2@kpitcummins.com>
|
2013-07-18 Sandeep Kumar Singh <Sandeep.Singh2@kpitcummins.com>
|
||||||
|
|
||||||
* config/rx-defs.h: Add macros for RX100, RX200, RX600, and
|
* config/rx-defs.h: Add macros for RX100, RX200, RX600, and
|
||||||
|
@ -792,7 +792,7 @@ i386_intel_operand (char *operand_string, int got_a_float)
|
|||||||
|| intel_state.is_mem)
|
|| intel_state.is_mem)
|
||||||
{
|
{
|
||||||
/* Memory operand. */
|
/* Memory operand. */
|
||||||
if (i.mem_operands
|
if ((int) i.mem_operands
|
||||||
>= 2 - !current_templates->start->opcode_modifier.isstring)
|
>= 2 - !current_templates->start->opcode_modifier.isstring)
|
||||||
{
|
{
|
||||||
/* Handle
|
/* Handle
|
||||||
|
Loading…
x
Reference in New Issue
Block a user