diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-22 12:27:36 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-22 12:27:36 +0000 |
commit | a23072e2fb2f0236102cf61276431c9a303809b7 (patch) | |
tree | 799a3e92e0a1f48649c9992ca66eeffa273bc181 /gcc/dwarf2out.c | |
parent | 4d327eac0a8e9a583af7b383279eee632a36fa70 (diff) | |
download | ppe42-gcc-a23072e2fb2f0236102cf61276431c9a303809b7.tar.gz ppe42-gcc-a23072e2fb2f0236102cf61276431c9a303809b7.zip |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38452 138bc75d-0d04-0410-961f-82ee72b054a4
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 39d76b24618..8c6b6ce5a4b 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. */ |