re PR target/47101 (ia64-hp-vms: main_input_filename clash)

PR target/47101
	* vmsdbgout.c (vmsdbgout_init): Rename main_input_filename to filename.
	(vmsdbgout_finish): Likewise.

From-SVN: r168346
This commit is contained in:
Joern Rennecke 2010-12-30 14:19:06 +00:00 committed by Joern Rennecke
parent ff1bb6eeed
commit 829f3c640f
2 changed files with 9 additions and 5 deletions

View File

@ -51,6 +51,10 @@
* config/alpha/vms.h (MALLOC_ALIGNMENT): Don't undef / define. * config/alpha/vms.h (MALLOC_ALIGNMENT): Don't undef / define.
(MALLOC_ABI_ALIGNMENT): Undef / define. (MALLOC_ABI_ALIGNMENT): Undef / define.
PR target/47101
* vmsdbgout.c (vmsdbgout_init): Rename main_input_filename to filename.
(vmsdbgout_finish): Likewise.
2010-12-29 Jakub Jelinek <jakub@redhat.com> 2010-12-29 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/47074 PR tree-optimization/47074

View File

@ -1454,18 +1454,18 @@ vmsdbgout_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
/* Set up for Debug output at the start of compilation. */ /* Set up for Debug output at the start of compilation. */
static void static void
vmsdbgout_init (const char *main_input_filename) vmsdbgout_init (const char *filename)
{ {
const char *language_string = lang_hooks.name; const char *language_string = lang_hooks.name;
if (write_symbols == VMS_AND_DWARF2_DEBUG) if (write_symbols == VMS_AND_DWARF2_DEBUG)
(*dwarf2_debug_hooks.init) (main_input_filename); (*dwarf2_debug_hooks.init) (filename);
if (debug_info_level == DINFO_LEVEL_NONE) if (debug_info_level == DINFO_LEVEL_NONE)
return; return;
/* Remember the name of the primary input file. */ /* Remember the name of the primary input file. */
primary_filename = main_input_filename; primary_filename = filename;
/* Allocate the initial hunk of the file_info_table. */ /* Allocate the initial hunk of the file_info_table. */
file_info_table = XCNEWVEC (dst_file_info_entry, FILE_TABLE_INCREMENT); file_info_table = XCNEWVEC (dst_file_info_entry, FILE_TABLE_INCREMENT);
@ -1568,13 +1568,13 @@ vmsdbgout_abstract_function (tree decl)
VMS Debug debugging info. */ VMS Debug debugging info. */
static void static void
vmsdbgout_finish (const char *main_input_filename ATTRIBUTE_UNUSED) vmsdbgout_finish (const char *filename ATTRIBUTE_UNUSED)
{ {
unsigned int i, ifunc; unsigned int i, ifunc;
int totsize; int totsize;
if (write_symbols == VMS_AND_DWARF2_DEBUG) if (write_symbols == VMS_AND_DWARF2_DEBUG)
(*dwarf2_debug_hooks.finish) (main_input_filename); (*dwarf2_debug_hooks.finish) (filename);
if (debug_info_level == DINFO_LEVEL_NONE) if (debug_info_level == DINFO_LEVEL_NONE)
return; return;