* 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:
Kazu Hirata
2002-05-03 02:25:33 +00:00
parent 38110bc4c3
commit d1a6c2428d
11 changed files with 53 additions and 40 deletions

View File

@ -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.

View File

@ -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. */

View File

@ -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;
}

View File

@ -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] == '"'

View File

@ -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. */

View File

@ -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