diff options
| author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-30 14:19:06 +0000 |
|---|---|---|
| committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-30 14:19:06 +0000 |
| commit | dc5f30fe82a2b7a228656b5f413fd8630f78c94c (patch) | |
| tree | 53e1eda02461d0a5bf65a95e426e8e306b1b1b92 | |
| parent | 506fcd1c8876340a9698c0845b517fed1572e486 (diff) | |
| download | ppe42-gcc-dc5f30fe82a2b7a228656b5f413fd8630f78c94c.tar.gz ppe42-gcc-dc5f30fe82a2b7a228656b5f413fd8630f78c94c.zip | |
PR target/47101
* vmsdbgout.c (vmsdbgout_init): Rename main_input_filename to filename.
(vmsdbgout_finish): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168346 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/vmsdbgout.c | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9efdd328535..040d58220ee 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -51,6 +51,10 @@ * config/alpha/vms.h (MALLOC_ALIGNMENT): Don't 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> PR tree-optimization/47074 diff --git a/gcc/vmsdbgout.c b/gcc/vmsdbgout.c index 2278d1ab30d..9353839d343 100644 --- a/gcc/vmsdbgout.c +++ b/gcc/vmsdbgout.c @@ -1454,18 +1454,18 @@ vmsdbgout_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED) /* Set up for Debug output at the start of compilation. */ static void -vmsdbgout_init (const char *main_input_filename) +vmsdbgout_init (const char *filename) { const char *language_string = lang_hooks.name; 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) return; /* 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. */ file_info_table = XCNEWVEC (dst_file_info_entry, FILE_TABLE_INCREMENT); @@ -1568,13 +1568,13 @@ vmsdbgout_abstract_function (tree decl) VMS Debug debugging info. */ static void -vmsdbgout_finish (const char *main_input_filename ATTRIBUTE_UNUSED) +vmsdbgout_finish (const char *filename ATTRIBUTE_UNUSED) { unsigned int i, ifunc; int totsize; 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) return; |

