diff options
author | Anatoly Sokolov <aesok@post.ru> | 2010-07-26 22:00:17 +0400 |
---|---|---|
committer | Anatoly Sokolov <aesok@gcc.gnu.org> | 2010-07-26 22:00:17 +0400 |
commit | b5f5d41d1a95994af84eececdb450685d0f1c436 (patch) | |
tree | d56be18415909b5f90b4a54679d77846826cda08 /gcc/config/mips/mips.h | |
parent | 114e33e1e6658de6e5a65e5d4bdc8623acb11527 (diff) | |
download | gcc-b5f5d41d1a95994af84eececdb450685d0f1c436.zip gcc-b5f5d41d1a95994af84eececdb450685d0f1c436.tar.gz gcc-b5f5d41d1a95994af84eececdb450685d0f1c436.tar.bz2 |
target.def (output_source_filename): New hook.
* target.def (output_source_filename): New hook.
* doc/tm.texi.in (TARGET_ASM_OUTPUT_SOURCE_FILENAME): Document.
* doc/tm.texi: Regenerate.
* toplev.c (output_file_directive) Remove function.
* toplev.h (output_file_directive) Remove.
* output.h (default_asm_output_source_filename,
output_file_directive): Declare.
* varasm.h (default_asm_output_source_filename,
output_file_directive): New functions.
* config/mips/mips.h (ASM_OUTPUT_SOURCE_FILENAME): Remove macro.
* config/mips/mips-protos.h (mips_output_filename): Remove.
* config/mips/mips.c (mips_output_filename): Make Static.
(TARGET_ASM_OUTPUT_SOURCE_FILENAME): Define.
From-SVN: r162542
Diffstat (limited to 'gcc/config/mips/mips.h')
-rw-r--r-- | gcc/config/mips/mips.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index a75cd57..ff36a90 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -2666,9 +2666,6 @@ do \ } \ while (0) -/* How to tell the debugger about changes of source files. */ -#define ASM_OUTPUT_SOURCE_FILENAME mips_output_filename - /* mips-tfile does not understand .stabd directives. */ #define DBX_OUTPUT_SOURCE_LINE(STREAM, LINE, COUNTER) do { \ dbxout_begin_stabn_sline (LINE); \ |