aboutsummaryrefslogtreecommitdiff
path: root/gcc/xcoffout.h
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-12-15 06:35:24 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1995-12-15 06:35:24 -0500
commit2afc5ce11853f2a269dd17e24b458779e9c41021 (patch)
treef8839fb0b7e8a392ae01d83860622c33c9f3e8b1 /gcc/xcoffout.h
parentd12de8cea3a624847192db12ef6d7bcbb7bc6bfa (diff)
downloadgcc-2afc5ce11853f2a269dd17e24b458779e9c41021.zip
gcc-2afc5ce11853f2a269dd17e24b458779e9c41021.tar.gz
gcc-2afc5ce11853f2a269dd17e24b458779e9c41021.tar.bz2
(DBX_STATIC_BLOCK_END): Use macro arguments.
(xcoff_begin_function_line, xcoff_current_function_file): Remove unused extern declarations. (DBX_OUTPUT_MAIN_SOURCE_FILENAME): Use macro argument. From-SVN: r10731
Diffstat (limited to 'gcc/xcoffout.h')
-rw-r--r--gcc/xcoffout.h24
1 files changed, 6 insertions, 18 deletions
diff --git a/gcc/xcoffout.h b/gcc/xcoffout.h
index 432a5de..8a97eaf 100644
--- a/gcc/xcoffout.h
+++ b/gcc/xcoffout.h
@@ -58,8 +58,8 @@
#define DBX_STATIC_BLOCK_END(ASMFILE,CODE) \
{ \
- if (current_sym_code == N_STSYM || current_sym_code == N_LCSYM) \
- fprintf (asmfile, "\t.es\n"); \
+ if ((CODE) == N_STSYM || (CODE) == N_LCSYM) \
+ fputs ("\t.es\n", (ASMFILE)); \
}
/* We must use N_RPYSM instead of N_RSYM for register parameters. */
@@ -115,22 +115,10 @@
#define N_RPSYM 0x8e
#endif
-/* The line number of the beginning of the current function.
- xcoffout.c needs this so that it can output relative linenumbers. */
-
-extern int xcoff_begin_function_line;
-
/* Name of the current include file. */
extern char *xcoff_current_include_file;
-/* Name of the current function file. This is the file the `.bf' is
- emitted from. In case a line is emitted from a different file,
- (by including that file of course), then the line number will be
- absolute. */
-
-extern char *xcoff_current_function_file;
-
/* Names of bss and data sections. These should be unique names for each
compilation unit. */
@@ -151,16 +139,16 @@ extern char *xcoff_lastfile;
is already emitting a .file directory, so we don't output one here also.
Initialize xcoff_lastfile. */
#define DBX_OUTPUT_MAIN_SOURCE_FILENAME(FILE,FILENAME) \
- xcoff_lastfile = input_file_name
+ xcoff_lastfile = (FILENAME)
/* If we are still in an include file, its end must be marked. */
#define DBX_OUTPUT_MAIN_SOURCE_FILE_END(FILE, FILENAME) \
{ \
if (xcoff_current_include_file) \
{ \
- fprintf (FILE, "\t.ei\t"); \
- output_quoted_string (FILE, xcoff_current_include_file); \
- fprintf (FILE, "\n"); \
+ fputs ("\t.ei\t", (FILE)); \
+ output_quoted_string ((FILE), xcoff_current_include_file); \
+ putc ('\n', (FILE)); \
xcoff_current_include_file = NULL; \
} \
}