summaryrefslogtreecommitdiff
path: root/gcc/reload.c
diff options
context:
space:
mode:
authorbernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4>2006-02-01 22:34:06 +0000
committerbernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4>2006-02-01 22:34:06 +0000
commit4196778e2a29173ec13d0ffb3122138b1942ed27 (patch)
treed6412dd3a5c3ca1f5f189b6087a8aa1884725ef0 /gcc/reload.c
parent7b2be760ef4bc38f740f9fb003d5424634fb13ca (diff)
downloadgcc-4196778e2a29173ec13d0ffb3122138b1942ed27.tar.gz
* reload.c (push_secondary_reload): Initialize t_icode.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@110485 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reload.c')
-rw-r--r--gcc/reload.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/reload.c b/gcc/reload.c
index 92ad0855812..ceb12ba888b 100644
--- a/gcc/reload.c
+++ b/gcc/reload.c
@@ -1,6 +1,7 @@
/* Search an insn for pseudo regs that must be in hard regs and are not.
Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
- 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+ 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
+ Inc.
This file is part of GCC.
@@ -300,7 +301,7 @@ push_secondary_reload (int in_p, rtx x, int opnum, int optional,
enum reg_class scratch_class;
enum machine_mode mode = reload_mode;
enum insn_code icode = CODE_FOR_nothing;
- enum insn_code t_icode;
+ enum insn_code t_icode = CODE_FOR_nothing;
enum reload_type secondary_type;
int s_reload, t_reload = -1;
const char *scratch_constraint;