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/ifcvt.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/ifcvt.c')
-rw-r--r-- | gcc/ifcvt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ifcvt.c b/gcc/ifcvt.c index db7140a..82660be 100644 --- a/gcc/ifcvt.c +++ b/gcc/ifcvt.c @@ -224,7 +224,7 @@ block_fallthru (bb) static int cond_exec_process_insns (ce_info, start, end, test, prob_val, mod_ok) - ce_if_block_t *ce_info; /* if block information */ + ce_if_block_t *ce_info ATTRIBUTE_UNUSED; /* if block information */ rtx start; /* first insn to look at */ rtx end; /* last insn to look at */ rtx test; /* conditional execution test */ |