* 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

@@ -343,7 +343,7 @@ s_stab_generic (what, stab_secname, stabstr_secname)
if (what == 's')
{
/* Release the string, if nobody else has used the obstack. */
if (saved_string_obstack_end == notes.next_free)
if (saved_string_obstack_end == notes.next_free)
obstack_free (&notes, string);
}
@@ -580,7 +580,7 @@ stabs_generate_asm_lineno ()
unsigned int lineno;
char *buf;
char sym[30];
/* Remember the last file/line and avoid duplicates. */
/* Remember the last file/line and avoid duplicates. */
static unsigned int prev_lineno = -1;
static char *prev_file = NULL;
@@ -593,22 +593,22 @@ stabs_generate_asm_lineno ()
as_where (&file, &lineno);
/* Don't emit sequences of stabs for the same line. */
/* Don't emit sequences of stabs for the same line. */
if (prev_file == NULL)
{
/* First time thru. */
/* First time thru. */
prev_file = xstrdup (file);
prev_lineno = lineno;
}
else if (lineno == prev_lineno
&& strcmp (file, prev_file) == 0)
{
/* Same file/line as last time. */
/* Same file/line as last time. */
return;
}
else
{
/* Remember file/line for next time. */
/* Remember file/line for next time. */
prev_lineno = lineno;
if (strcmp (file, prev_file) != 0)
{