diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-08-10 12:30:34 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-08-10 12:30:34 +0000 |
commit | d950dee3a50e04e4bdf03cc061f7f2b858a84657 (patch) | |
tree | e3ee20c06e269902b68b2a5e3e336d2a0081cd5f /gcc/gcov.c | |
parent | fac37dc49748835a2264f9a53b485b89aceb5718 (diff) | |
download | gcc-d950dee3a50e04e4bdf03cc061f7f2b858a84657.zip gcc-d950dee3a50e04e4bdf03cc061f7f2b858a84657.tar.gz gcc-d950dee3a50e04e4bdf03cc061f7f2b858a84657.tar.bz2 |
emit-rtl.c (emit_jump_insn_before, [...]): Fix uninitialized variable.
* emit-rtl.c (emit_jump_insn_before, emit_call_insn_before,
emit_jump_insn): Fix uninitialized variable.
* gcov.c (init_line_info): Likewise.
* genautomata.c (transform_3): Add braces around ambiguous
else.
* ifcvt.c (cond_exec_process_insns): Mark parameter with
ATTRIBUTE_UNUSED.
* ra-build.c (parts_to_webs_1): Fix uninitialized variable.
* regrename.c (copyprop_hardreg_forward): Fix uninitialized
variable.
From-SVN: r56182
Diffstat (limited to 'gcc/gcov.c')
-rw-r--r-- | gcc/gcov.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1308,7 +1308,7 @@ init_line_info (line_info, total, maxlineno) char *ptr = bb_data; long count; long line_num; - struct line_info *line_ptr; /* line info ptr. */ + struct line_info *line_ptr = 0; /* line info ptr. */ memset (&function, 0, sizeof (function)); if (output_function_summary) |