diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-12 16:16:23 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-12 16:16:23 +0000 |
commit | 5f3985d9a3d3570b09c00c8f76088a132ed68b48 (patch) | |
tree | 92990621542b19053cd06bed439c95904d8adcdb /gcc/dwarfout.c | |
parent | 99c32175dedefd515b7f39129f979817349a80f3 (diff) | |
download | gcc-5f3985d9a3d3570b09c00c8f76088a132ed68b48.tar.gz |
* dwarfout.c (dwarfout_init): Add cast.
* sched-deps.c (sched_analyze_insn): Remove unused vars.
* unwind-dw2-fde.c (_Unwind_Find_FDE): Flag unused parameter so.
cp:
* method.c (build_mangled_C99_name): Remove unused prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41996 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarfout.c')
-rw-r--r-- | gcc/dwarfout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index 573edcfda5c..7db0def2d69 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -5806,7 +5806,7 @@ dwarfout_init (asm_out_file, main_input_filename) fputc ('\n', asm_out_file); ASM_OUTPUT_PUSH_SECTION (asm_out_file, DEBUG_SECTION); ASM_OUTPUT_LABEL (asm_out_file, DEBUG_BEGIN_LABEL); - output_die (output_compile_unit_die, main_input_filename); + output_die (output_compile_unit_die, (PTR) main_input_filename); ASM_OUTPUT_POP_SECTION (asm_out_file); fputc ('\n', asm_out_file); |