mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
* dis-buf.c: Add ATTRIBUTE_UNUSED as appropriate.
(generic_strcat_address): Add cast to avoid warning. * i386-dis.c: Initialize all structure fields to avoid warnings. Add ATTRIBUTE_UNUSED as appropriate.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
1999-07-11 Ian Lance Taylor <ian@zembu.com>
|
||||||
|
|
||||||
|
* dis-buf.c: Add ATTRIBUTE_UNUSED as appropriate.
|
||||||
|
(generic_strcat_address): Add cast to avoid warning.
|
||||||
|
* i386-dis.c: Initialize all structure fields to avoid warnings.
|
||||||
|
Add ATTRIBUTE_UNUSED as appropriate.
|
||||||
|
|
||||||
1999-07-08 Jakub Jelinek <jj@ultra.linux.cz>
|
1999-07-08 Jakub Jelinek <jj@ultra.linux.cz>
|
||||||
|
|
||||||
* sparc-dis.c (print_insn_sparc): Differentiate between
|
* sparc-dis.c (print_insn_sparc): Differentiate between
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Disassemble from a buffer, for GNU.
|
/* Disassemble from a buffer, for GNU.
|
||||||
Copyright (C) 1993, 1994, 1998 Free Software Foundation, Inc.
|
Copyright (C) 1993, 1994, 1998, 1999 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
@ -85,7 +85,7 @@ generic_strcat_address (addr, buf, len)
|
|||||||
char tmpBuf[30];
|
char tmpBuf[30];
|
||||||
|
|
||||||
sprintf_vma (tmpBuf, addr);
|
sprintf_vma (tmpBuf, addr);
|
||||||
if ((strlen (buf) + strlen (tmpBuf)) <= len)
|
if ((strlen (buf) + strlen (tmpBuf)) <= (unsigned int) len)
|
||||||
strcat (buf, tmpBuf);
|
strcat (buf, tmpBuf);
|
||||||
else
|
else
|
||||||
strncat (buf, tmpBuf, (len - strlen(buf)));
|
strncat (buf, tmpBuf, (len - strlen(buf)));
|
||||||
@ -97,8 +97,8 @@ generic_strcat_address (addr, buf, len)
|
|||||||
|
|
||||||
int
|
int
|
||||||
generic_symbol_at_address (addr, info)
|
generic_symbol_at_address (addr, info)
|
||||||
bfd_vma addr;
|
bfd_vma addr ATTRIBUTE_UNUSED;
|
||||||
struct disassemble_info * info;
|
struct disassemble_info *info ATTRIBUTE_UNUSED;
|
||||||
{
|
{
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
2433
opcodes/i386-dis.c
2433
opcodes/i386-dis.c
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,8 @@
|
|||||||
a29k-dis.c
|
a29k-dis.c
|
||||||
alpha-dis.c
|
alpha-dis.c
|
||||||
alpha-opc.c
|
alpha-opc.c
|
||||||
|
arc-dis.c
|
||||||
|
arc-opc.c
|
||||||
arm-dis.c
|
arm-dis.c
|
||||||
arm-opc.h
|
arm-opc.h
|
||||||
cgen-asm.c
|
cgen-asm.c
|
||||||
@ -56,6 +58,8 @@ sysdep.h
|
|||||||
tic30-dis.c
|
tic30-dis.c
|
||||||
tic80-dis.c
|
tic80-dis.c
|
||||||
tic80-opc.c
|
tic80-opc.c
|
||||||
|
v850-dis.c
|
||||||
|
v850-opc.c
|
||||||
vax-dis.c
|
vax-dis.c
|
||||||
w65-dis.c
|
w65-dis.c
|
||||||
w65-opc.h
|
w65-opc.h
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 1999-04-18 19:01-0400\n"
|
"POT-Creation-Date: 1999-07-11 22:05-0400\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -22,7 +22,33 @@ msgstr ""
|
|||||||
msgid "jump hint unaligned"
|
msgid "jump hint unaligned"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: arm-dis.c:388
|
#: arc-dis.c:231
|
||||||
|
msgid "*unknown*"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: arc-opc.c:629
|
||||||
|
msgid "unable to fit different valued constants into instruction"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: arc-opc.c:639
|
||||||
|
msgid "auxiliary register not allowed here"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: arc-opc.c:652
|
||||||
|
#, c-format
|
||||||
|
msgid "invalid register number `%d'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: arc-opc.c:775
|
||||||
|
#, c-format
|
||||||
|
msgid "value won't fit in range %ld - %ld"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: arc-opc.c:871
|
||||||
|
msgid "branch address not on 4 byte boundary"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: arm-dis.c:407
|
||||||
msgid "<illegal precision>"
|
msgid "<illegal precision>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -56,38 +82,38 @@ msgstr ""
|
|||||||
msgid "Address 0x%x is out of bounds.\n"
|
msgid "Address 0x%x is out of bounds.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fr30-asm.c:303 m32r-asm.c:319
|
#: fr30-asm.c:303 m32r-asm.c:299
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unrecognized field %d while parsing.\n"
|
msgid "Unrecognized field %d while parsing.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. We couldn't parse it.
|
#. We couldn't parse it.
|
||||||
#: fr30-asm.c:367 fr30-asm.c:436 m32r-asm.c:383 m32r-asm.c:452
|
#: fr30-asm.c:367 fr30-asm.c:436 m32r-asm.c:363 m32r-asm.c:432
|
||||||
msgid "unrecognized instruction"
|
msgid "unrecognized instruction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Syntax char didn't match. Can't be this insn.
|
#. Syntax char didn't match. Can't be this insn.
|
||||||
#. FIXME: would like to return something like
|
#. FIXME: would like to return something like
|
||||||
#. "expected char `c'"
|
#. "expected char `c'"
|
||||||
#: fr30-asm.c:404 m32r-asm.c:420
|
#: fr30-asm.c:404 m32r-asm.c:400
|
||||||
msgid "syntax error"
|
msgid "syntax error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fr30-asm.c:430 m32r-asm.c:446
|
#: fr30-asm.c:430 m32r-asm.c:426
|
||||||
msgid "junk at end of line"
|
msgid "junk at end of line"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fr30-asm.c:523 m32r-asm.c:539
|
#: fr30-asm.c:523 m32r-asm.c:519
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "bad instruction `%.50s...'"
|
msgid "bad instruction `%.50s...'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fr30-asm.c:526 m32r-asm.c:542
|
#: fr30-asm.c:526 m32r-asm.c:522
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "bad instruction `%.50s'"
|
msgid "bad instruction `%.50s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fr30-dis.c:300 m32r-dis.c:247
|
#: fr30-dis.c:300 m32r-dis.c:227
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unrecognized field %d while printing insn.\n"
|
msgid "Unrecognized field %d while printing insn.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -97,32 +123,32 @@ msgstr ""
|
|||||||
msgid "operand out of range (%lu not between 0 and %lu)"
|
msgid "operand out of range (%lu not between 0 and %lu)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fr30-ibld.c:749 m32r-ibld.c:683
|
#: fr30-ibld.c:749 m32r-ibld.c:659
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unrecognized field %d while building insn.\n"
|
msgid "Unrecognized field %d while building insn.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fr30-ibld.c:952 m32r-ibld.c:819
|
#: fr30-ibld.c:952 m32r-ibld.c:770
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unrecognized field %d while decoding insn.\n"
|
msgid "Unrecognized field %d while decoding insn.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fr30-ibld.c:1096 m32r-ibld.c:932
|
#: fr30-ibld.c:1096 m32r-ibld.c:863
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unrecognized field %d while getting int operand.\n"
|
msgid "Unrecognized field %d while getting int operand.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fr30-ibld.c:1225 m32r-ibld.c:1030
|
#: fr30-ibld.c:1225 m32r-ibld.c:941
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unrecognized field %d while getting vma operand.\n"
|
msgid "Unrecognized field %d while getting vma operand.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fr30-ibld.c:1358 m32r-ibld.c:1132
|
#: fr30-ibld.c:1358 m32r-ibld.c:1023
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unrecognized field %d while setting int operand.\n"
|
msgid "Unrecognized field %d while setting int operand.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fr30-ibld.c:1484 m32r-ibld.c:1227
|
#: fr30-ibld.c:1484 m32r-ibld.c:1098
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unrecognized field %d while setting vma operand.\n"
|
msgid "Unrecognized field %d while setting vma operand.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -158,7 +184,7 @@ msgstr ""
|
|||||||
msgid "unknown\t0x%04lx"
|
msgid "unknown\t0x%04lx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: m10300-dis.c:706
|
#: m10300-dis.c:546
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "unknown\t0x%04x"
|
msgid "unknown\t0x%04x"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -168,7 +194,7 @@ msgstr ""
|
|||||||
msgid "<internal error in opcode table: %s %s>\n"
|
msgid "<internal error in opcode table: %s %s>\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: m68k-dis.c:967
|
#: m68k-dis.c:988
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "<function code %d>"
|
msgid "<function code %d>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -178,7 +204,7 @@ msgstr ""
|
|||||||
msgid "# <dis error: %08x>"
|
msgid "# <dis error: %08x>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mips-dis.c:373
|
#: mips-dis.c:237
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "# internal error, undefined modifier(%c)"
|
msgid "# internal error, undefined modifier(%c)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -222,21 +248,80 @@ msgid "invalid register operand when updating"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. Mark as non-valid instruction
|
#. Mark as non-valid instruction
|
||||||
#: sparc-dis.c:739
|
#: sparc-dis.c:744
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sparc-dis.c:811
|
#: sparc-dis.c:816
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Internal error: bad sparc-opcode.h: \"%s\", %#.8lx, %#.8lx\n"
|
msgid "Internal error: bad sparc-opcode.h: \"%s\", %#.8lx, %#.8lx\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sparc-dis.c:822
|
#: sparc-dis.c:827
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Internal error: bad sparc-opcode.h: \"%s\", %#.8lx, %#.8lx\n"
|
msgid "Internal error: bad sparc-opcode.h: \"%s\", %#.8lx, %#.8lx\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: sparc-dis.c:871
|
#: sparc-dis.c:876
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Internal error: bad sparc-opcode.h: \"%s\" == \"%s\"\n"
|
msgid "Internal error: bad sparc-opcode.h: \"%s\" == \"%s\"\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: v850-dis.c:221
|
||||||
|
#, c-format
|
||||||
|
msgid "unknown operand shift: %x\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: v850-dis.c:233
|
||||||
|
#, c-format
|
||||||
|
msgid "unknown pop reg: %d\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. The functions used to insert and extract complicated operands.
|
||||||
|
#. Note: There is a conspiracy between these functions and
|
||||||
|
#. v850_insert_operand() in gas/config/tc-v850.c. Error messages
|
||||||
|
#. containing the string 'out of range' will be ignored unless a
|
||||||
|
#. specific command line option is given to GAS.
|
||||||
|
#: v850-opc.c:46
|
||||||
|
msgid "displacement value is not in range and is not aligned"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: v850-opc.c:47
|
||||||
|
msgid "displacement value is out of range"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: v850-opc.c:48
|
||||||
|
msgid "displacement value is not aligned"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: v850-opc.c:50
|
||||||
|
msgid "immediate value is out of range"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: v850-opc.c:61
|
||||||
|
msgid "branch value not in range and to odd offset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: v850-opc.c:63 v850-opc.c:95
|
||||||
|
msgid "branch value out of range"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: v850-opc.c:66 v850-opc.c:98
|
||||||
|
msgid "branch to odd offset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: v850-opc.c:93
|
||||||
|
msgid "branch value not in range and to an odd offset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: v850-opc.c:321
|
||||||
|
msgid "invalid register for stack adjustment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: v850-opc.c:343
|
||||||
|
msgid "immediate value not in range and not even"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: v850-opc.c:348
|
||||||
|
msgid "immediate value must be even"
|
||||||
|
msgstr ""
|
||||||
|
Reference in New Issue
Block a user