diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2002-05-03 02:25:33 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2002-05-03 02:25:33 +0000 |
commit | d1a6c2428d38a8a36727df7f693d784854172701 (patch) | |
tree | e1ec82f85326d1a8e347a25b10a95b00a4c5f6ec /gas/stabs.c | |
parent | 38110bc4c34ea54dfcdd65dcd09dc1364240fa5e (diff) | |
download | gdb-d1a6c2428d38a8a36727df7f693d784854172701.zip gdb-d1a6c2428d38a8a36727df7f693d784854172701.tar.gz gdb-d1a6c2428d38a8a36727df7f693d784854172701.tar.bz2 |
* 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.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gas/stabs.c b/gas/stabs.c index 60b03c4..bdeae10 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 (¬es, 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) { |