diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-04-01 13:50:50 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-04-01 13:50:50 +0000 |
commit | aaa8b713ac8a2ef085481c7030b39605e3ccbded (patch) | |
tree | c7f99aee55433095f879059152fde76199261413 /gcc/reload.c | |
parent | ce06caeedc88816806ac33a07a20d7b4d7530465 (diff) | |
download | gcc-aaa8b713ac8a2ef085481c7030b39605e3ccbded.tar.gz |
(push_reload): Initialize secondary_{in,out}_icode.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9282 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/reload.c')
-rw-r--r-- | gcc/reload.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/reload.c b/gcc/reload.c index 12dfc498947..35bc49746e5 100644 --- a/gcc/reload.c +++ b/gcc/reload.c @@ -725,7 +725,8 @@ push_reload (in, out, inloc, outloc, class, int dont_share = 0; rtx *in_subreg_loc = 0, *out_subreg_loc = 0; int secondary_in_reload = -1, secondary_out_reload = -1; - enum insn_code secondary_in_icode, secondary_out_icode; + enum insn_code secondary_in_icode = CODE_FOR_nothing; + enum insn_code secondary_out_icode = CODE_FOR_nothing; /* INMODE and/or OUTMODE could be VOIDmode if no mode has been specified for the operand. In that case, |