diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-10 12:30:34 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-10 12:30:34 +0000 |
commit | d90b3d04fca5bcaf406e6e3747b11c8a9295c42b (patch) | |
tree | e3ee20c06e269902b68b2a5e3e336d2a0081cd5f /gcc/emit-rtl.c | |
parent | 7fe54e4877c20ac320940f73f98e0d4b69f26b2c (diff) | |
download | gcc-d90b3d04fca5bcaf406e6e3747b11c8a9295c42b.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56182 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index d8689243e98..cf138d37259 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -3974,7 +3974,7 @@ rtx emit_jump_insn_before (x, before) rtx x, before; { - rtx insn, last; + rtx insn, last = NULL_RTX; #ifdef ENABLE_RTL_CHECKING if (before == NULL_RTX) @@ -4021,7 +4021,7 @@ rtx emit_call_insn_before (x, before) rtx x, before; { - rtx last, insn; + rtx last = NULL_RTX, insn; #ifdef ENABLE_RTL_CHECKING if (before == NULL_RTX) @@ -4506,7 +4506,7 @@ rtx emit_jump_insn (x) rtx x; { - rtx last, insn; + rtx last = NULL_RTX, insn; switch (GET_CODE (x)) { |