Commit abf9af02 by Kazu Hirata Committed by Jeff Law

* xcoffout.c: Fix formatting.

From-SVN: r36035
parent ffe9f785
2000-08-28 Kazu Hirata <kazu@hxi.com>
* xcoffout.c: Fix formatting.
2000-08-28 Jason Merrill <jason@redhat.com>
* dwarf2out.c (attr_checksum): Also ignore DW_AT_producer.
......
/* Output xcoff-format symbol table information from GNU compiler.
Copyright (C) 1992, 1994, 1995, 1997, 1998,
1999, 2000 Free Software Foundation, Inc.
Copyright (C) 1992, 1994, 1995, 1997, 1998, 1999, 2000
Free Software Foundation, Inc.
This file is part of GNU CC.
......@@ -19,7 +19,6 @@ along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
/* Output xcoff-format symbol table data. The main functionality is contained
in dbxout.c. This file implements the sdbout-like parts of the xcoff
interface. Many functions are very similar to their counterparts in
......@@ -197,7 +196,7 @@ stab_to_sclass (stab)
case N_FNAME:
UNKNOWN_STAB ("N_FNAME");
abort();
abort ();
case N_FUN:
return C_FUN;
......@@ -345,7 +344,7 @@ xcoffout_source_file (file, filename, inline_p)
fprintf (file, "\n");
xcoff_current_include_file = NULL;
}
xcoff_inlining=inline_p;
xcoff_inlining = inline_p;
if (strcmp (main_input_filename, filename) || inline_p)
{
fprintf (file, "\t.bi\t");
......@@ -432,7 +431,6 @@ xcoffout_begin_block (file, line, n)
{
tree decl = current_function_decl;
/* The IBM AIX compiler does not emit a .bb for the function level scope,
so we avoid it here also. */
if (n != 1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment