mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
Fri Apr 24 12:47:42 1998 Philippe De Muyter <phdm@macqel.be>
* read.c (s_set): Cast xmalloc return value to fragS *. * config/tc-m68k.c (m68k_ip): Function made static to match previous forward declaration. (insert_reg, init_regtable, md_convert_frag_1): Likewise.
This commit is contained in:
@ -1,9 +1,16 @@
|
|||||||
|
Fri Apr 24 12:47:42 1998 Philippe De Muyter <phdm@macqel.be>
|
||||||
|
|
||||||
|
* read.c (s_set): Cast xmalloc return value to fragS *.
|
||||||
|
* config/tc-m68k.c (m68k_ip): Function made static to match
|
||||||
|
previous forward declaration.
|
||||||
|
(insert_reg, init_regtable, md_convert_frag_1): Likewise.
|
||||||
|
|
||||||
Fri Apr 24 09:26:46 1998 Nick Clifton <nickc@cygnus.com>
|
Fri Apr 24 09:26:46 1998 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
* config/tc-v850.c: Add internationalisation macros to error
|
* config/tc-v850.c: Add internationalisation macros to error
|
||||||
strings.
|
strings.
|
||||||
|
|
||||||
* config/tc-m32r.c (can_make_parallel): Add initernationalisation
|
* config/tc-m32r.c (can_make_parallel): Add internationalisation
|
||||||
macros to error strings.
|
macros to error strings.
|
||||||
|
|
||||||
Thu Apr 23 19:23:23 1998 Ian Lance Taylor <ian@cygnus.com>
|
Thu Apr 23 19:23:23 1998 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
@ -924,7 +924,7 @@ static struct hash_control *op_hash;
|
|||||||
|
|
||||||
/* Assemble an m68k instruction. */
|
/* Assemble an m68k instruction. */
|
||||||
|
|
||||||
void
|
static void
|
||||||
m68k_ip (instring)
|
m68k_ip (instring)
|
||||||
char *instring;
|
char *instring;
|
||||||
{
|
{
|
||||||
@ -3125,7 +3125,7 @@ crack_operand (str, opP)
|
|||||||
the frags/bytes it assembles to.
|
the frags/bytes it assembles to.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
static void
|
||||||
insert_reg (regname, regnum)
|
insert_reg (regname, regnum)
|
||||||
const char *regname;
|
const char *regname;
|
||||||
int regnum;
|
int regnum;
|
||||||
@ -3321,7 +3321,7 @@ static const struct init_entry init_table[] =
|
|||||||
{ 0, 0 }
|
{ 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
void
|
static void
|
||||||
init_regtable ()
|
init_regtable ()
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
@ -4110,7 +4110,7 @@ void md_apply_fix (fixP, val)
|
|||||||
the bytes inside it modified to conform to the new size There is UGLY
|
the bytes inside it modified to conform to the new size There is UGLY
|
||||||
MAGIC here. ..
|
MAGIC here. ..
|
||||||
*/
|
*/
|
||||||
void
|
static void
|
||||||
md_convert_frag_1 (fragP)
|
md_convert_frag_1 (fragP)
|
||||||
register fragS *fragP;
|
register fragS *fragP;
|
||||||
{
|
{
|
||||||
|
@ -2710,7 +2710,7 @@ s_set (equiv)
|
|||||||
if (listing & LISTING_SYMBOLS)
|
if (listing & LISTING_SYMBOLS)
|
||||||
{
|
{
|
||||||
extern struct list_info_struct *listing_tail;
|
extern struct list_info_struct *listing_tail;
|
||||||
fragS *dummy_frag = xmalloc (sizeof(fragS));
|
fragS *dummy_frag = (fragS *) xmalloc (sizeof(fragS));
|
||||||
memset (dummy_frag, 0, sizeof(fragS));
|
memset (dummy_frag, 0, sizeof(fragS));
|
||||||
dummy_frag->fr_type = rs_fill;
|
dummy_frag->fr_type = rs_fill;
|
||||||
dummy_frag->line = listing_tail;
|
dummy_frag->line = listing_tail;
|
||||||
|
Reference in New Issue
Block a user