diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-12-22 12:27:36 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-12-22 12:27:36 +0000 |
commit | fc608b0321008b7fab4f1d797d5f0a7855b47b02 (patch) | |
tree | 799a3e92e0a1f48649c9992ca66eeffa273bc181 /gcc/dwarf2out.c | |
parent | a545190e1f8537cf66ff53a580168489102dbf09 (diff) | |
download | gcc-fc608b0321008b7fab4f1d797d5f0a7855b47b02.zip gcc-fc608b0321008b7fab4f1d797d5f0a7855b47b02.tar.gz gcc-fc608b0321008b7fab4f1d797d5f0a7855b47b02.tar.bz2 |
Makefile.in (sched-deps.o, [...]): Fix dependency typo.
* Makefile.in (sched-deps.o, sched-rgn.o): Fix dependency typo.
* fp-bit.h (usi_to_float): Add prototype.
* i386.c (file_info_cmp): Likewise.
(dwarf2out_line): Hide variable `old_in_use'.
* objc-act.c (objc_fatal): Delete.
* sched-vis.c (visualize_stall_cycles): Remove unused variable.
* system.h (getopt): Fix error in last change.
* varasm.c (assemble_trampoline_template): Constify.
From-SVN: r38452
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 39d76b2..8c6b6ce 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -3533,6 +3533,7 @@ static void gen_type_die_for_member PARAMS ((tree, tree, dw_die_ref)); static void gen_abstract_function PARAMS ((tree)); static rtx save_rtx PARAMS ((rtx)); static void splice_child_die PARAMS ((dw_die_ref, dw_die_ref)); +static int file_info_cmp PARAMS ((const void *, const void *)); /* Section names used to hold DWARF debugging information. */ #ifndef DEBUG_INFO_SECTION @@ -11338,7 +11339,9 @@ dwarf2out_line (filename, line) if (DWARF2_ASM_LINE_DEBUG_INFO) { +#if 0 unsigned old_in_use = line_file_table.in_use; +#endif unsigned file_num = lookup_filename (&line_file_table, filename); /* Emit the .file and .loc directives understood by GNU as. */ |