mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-03 05:12:28 +08:00
* as.h: Fix formatting.
* cgen.c: Likewise. * cgen.h: Likewise. * dwarf2dbg.c: Likewise. * frags.h: Likewise. * gasp.c: Likewise. * macro.c: Likewise. * read.c: Likewise. * stabs.c: Likewise. * symbols.c: Likewise.
This commit is contained in:
@ -1,3 +1,16 @@
|
||||
2002-05-02 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* as.h: Fix formatting.
|
||||
* cgen.c: Likewise.
|
||||
* cgen.h: Likewise.
|
||||
* dwarf2dbg.c: Likewise.
|
||||
* frags.h: Likewise.
|
||||
* gasp.c: Likewise.
|
||||
* macro.c: Likewise.
|
||||
* read.c: Likewise.
|
||||
* stabs.c: Likewise.
|
||||
* symbols.c: Likewise.
|
||||
|
||||
2002-05-02 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* app.c (mri_pseudo): Only declare for TC_M68K.
|
||||
|
2
gas/as.h
2
gas/as.h
@ -168,7 +168,7 @@ extern char **environ;
|
||||
|
||||
/* Hack to make "gcc -Wall" not complain about obstack macros. */
|
||||
#if !defined (memcpy) && !defined (bcopy)
|
||||
#define bcopy(src,dest,size) memcpy(dest,src,size)
|
||||
#define bcopy(src,dest,size) memcpy (dest, src, size)
|
||||
#endif
|
||||
|
||||
/* Make Saber happier on obstack.h. */
|
||||
|
@ -173,7 +173,7 @@ gas_cgen_restore_fixups (i)
|
||||
}
|
||||
|
||||
num_fixups = stored_fixups[i].num_fixups_in_chain;
|
||||
memcpy (fixups,stored_fixups[i].fixup_chain,
|
||||
memcpy (fixups, stored_fixups[i].fixup_chain,
|
||||
(sizeof (stored_fixups[i].fixup_chain[0])) * num_fixups);
|
||||
stored_fixups[i].num_fixups_in_chain = 0;
|
||||
}
|
||||
|
@ -383,7 +383,7 @@ get_any_string (idx, in, out, expand, pretend_quoted)
|
||||
idx + 1,
|
||||
in,
|
||||
&val);
|
||||
sprintf(buf, "%d", val);
|
||||
sprintf (buf, "%d", val);
|
||||
sb_add_string (out, buf);
|
||||
}
|
||||
else if (in->ptr[idx] == '"'
|
||||
|
@ -45,7 +45,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
|
||||
#include "ecoff.h"
|
||||
|
||||
#ifndef TC_START_LABEL
|
||||
#define TC_START_LABEL(x,y) (x==':')
|
||||
#define TC_START_LABEL(x,y) (x == ':')
|
||||
#endif
|
||||
|
||||
/* Set by the object-format or the target. */
|
||||
|
@ -439,7 +439,7 @@ colon (sym_name) /* Just seen "x:" - rattle symbols & frags. */
|
||||
#ifdef BFD_ASSEMBLER
|
||||
if (OUTPUT_FLAVOR == bfd_target_aout_flavour)
|
||||
#endif
|
||||
sprintf(od_buf, "%d.%d.",
|
||||
sprintf (od_buf, "%d.%d.",
|
||||
S_GET_OTHER (symbolP),
|
||||
S_GET_DESC (symbolP));
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user