summaryrefslogtreecommitdiff
path: root/gas/stabs.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2002-05-03 02:25:33 +0000
committerKazu Hirata <kazu@codesourcery.com>2002-05-03 02:25:33 +0000
commitb08e4f870c60d108e1e8338acb31dd9fe4334c96 (patch)
treea3eadb227ede01f676ef8e38c170530c6ab18131 /gas/stabs.c
parentb2596a9cb81575f49974370ba73cdb4e92025c8a (diff)
downloadbinutils-redhat-b08e4f870c60d108e1e8338acb31dd9fe4334c96.tar.gz
* 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.
Diffstat (limited to 'gas/stabs.c')
-rw-r--r--gas/stabs.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gas/stabs.c b/gas/stabs.c
index 60b03c4994..bdeae10d10 100644
--- a/gas/stabs.c
+++ b/gas/stabs.c
@@ -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)
{