diff options
author | Bernd Schmidt <bernd.schmidt@analog.com> | 2006-02-01 22:34:06 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds@gcc.gnu.org> | 2006-02-01 22:34:06 +0000 |
commit | 65b4c3370fbfb06b33e313763afdf28715402bfa (patch) | |
tree | d6412dd3a5c3ca1f5f189b6087a8aa1884725ef0 | |
parent | ca7242fceb36a7dd4bd66fdf785e9cb93037f51e (diff) | |
download | gcc-65b4c3370fbfb06b33e313763afdf28715402bfa.zip gcc-65b4c3370fbfb06b33e313763afdf28715402bfa.tar.gz gcc-65b4c3370fbfb06b33e313763afdf28715402bfa.tar.bz2 |
reload.c (push_secondary_reload): Initialize t_icode.
* reload.c (push_secondary_reload): Initialize t_icode.
From-SVN: r110485
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/reload.c | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 664fbf4..027a773 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-02-01 Bernd Schmidt <bernd.schmidt@analog.com> + + * reload.c (push_secondary_reload): Initialize t_icode. + 2006-02-01 Jakub Jelinek <jakub@redhat.com> * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): For diff --git a/gcc/reload.c b/gcc/reload.c index 92ad085..ceb12ba 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; |