Commit f7e7e318 by Kazu Hirata Committed by Kazu Hirata

system.h (ASM_OUTPUT_MAIN_SOURCE_FILENAME): Poison.

	* system.h (ASM_OUTPUT_MAIN_SOURCE_FILENAME): Poison.
	* toplev.c (output_file_directive): Don't use
	ASM_OUTPUT_MAIN_SOURCE_FILENAME.

From-SVN: r75448
parent a8c2775c
2004-01-05 Kazu Hirata <kazu@cs.umass.edu>
* system.h (ASM_OUTPUT_MAIN_SOURCE_FILENAME): Poison.
* toplev.c (output_file_directive): Don't use
ASM_OUTPUT_MAIN_SOURCE_FILENAME.
2004-01-05 Daniel Berlin <dberlin@dberlin.org> 2004-01-05 Daniel Berlin <dberlin@dberlin.org>
* ggc-zone.c: Remove everything in #ifdef USING_MALLOC_PAGE_GROUPS * ggc-zone.c: Remove everything in #ifdef USING_MALLOC_PAGE_GROUPS
......
...@@ -621,7 +621,7 @@ typedef char _Bool; ...@@ -621,7 +621,7 @@ typedef char _Bool;
EXIT_BODY OBJECT_FORMAT_ROSE MULTIBYTE_CHARS MAP_CHARACTER \ EXIT_BODY OBJECT_FORMAT_ROSE MULTIBYTE_CHARS MAP_CHARACTER \
LIBGCC_NEEDS_DOUBLE FINAL_PRESCAN_LABEL DEFAULT_CALLER_SAVES \ LIBGCC_NEEDS_DOUBLE FINAL_PRESCAN_LABEL DEFAULT_CALLER_SAVES \
LOAD_ARGS_REVERSED MAX_INTEGER_COMPUTATION_MODE \ LOAD_ARGS_REVERSED MAX_INTEGER_COMPUTATION_MODE \
CONVERT_HARD_REGISTER_TO_SSA_P CONVERT_HARD_REGISTER_TO_SSA_P ASM_OUTPUT_MAIN_SOURCE_FILENAME
/* Hooks that are no longer used. */ /* Hooks that are no longer used. */
#pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \ #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \
......
...@@ -1425,9 +1425,6 @@ output_file_directive (FILE *asm_file, const char *input_name) ...@@ -1425,9 +1425,6 @@ output_file_directive (FILE *asm_file, const char *input_name)
na--; na--;
} }
#ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
ASM_OUTPUT_MAIN_SOURCE_FILENAME (asm_file, na);
#else
#ifdef ASM_OUTPUT_SOURCE_FILENAME #ifdef ASM_OUTPUT_SOURCE_FILENAME
ASM_OUTPUT_SOURCE_FILENAME (asm_file, na); ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
#else #else
...@@ -1435,7 +1432,6 @@ output_file_directive (FILE *asm_file, const char *input_name) ...@@ -1435,7 +1432,6 @@ output_file_directive (FILE *asm_file, const char *input_name)
output_quoted_string (asm_file, na); output_quoted_string (asm_file, na);
fputc ('\n', asm_file); fputc ('\n', asm_file);
#endif #endif
#endif
} }
/* Routine to open a dump file. Return true if the dump file is enabled. */ /* Routine to open a dump file. Return true if the dump file is enabled. */
......
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