diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-06-20 00:35:42 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-06-19 18:35:42 -0600 |
commit | c16ddde3e34e6c8c948dffe990512544fad84767 (patch) | |
tree | 76be7f9aafbf2a7cead5502b9c955038688e5e31 /gcc/calls.c | |
parent | 2305ac0d57edd55ab075ced9f7376c5f85ef0298 (diff) | |
download | gcc-c16ddde3e34e6c8c948dffe990512544fad84767.zip gcc-c16ddde3e34e6c8c948dffe990512544fad84767.tar.gz gcc-c16ddde3e34e6c8c948dffe990512544fad84767.tar.bz2 |
calls.c (expand_call): Initialize "src" and "dest".
* calls.c (expand_call): Initialize "src" and "dest".
* stmt.c (expand_return): Likewise.
* expmed.c (extract_split_bit_field): Similarly for "result"
* gcse.c (compute_hash_table): Mark first arg as unused.
* jump.c (jump_optimize): Initialize reversep.
* tree.c (make_node): Initialize length.
From-SVN: r20629
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index 8133cc0..6271a61 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -2116,7 +2116,7 @@ expand_call (exp, target, ignore) Deal with them explicitly by copying from the return registers into the target MEM locations. */ int bytes = int_size_in_bytes (TREE_TYPE (exp)); - rtx src, dst; + rtx src = NULL, dst = NULL; int bitsize = MIN (TYPE_ALIGN (TREE_TYPE (exp)), BITS_PER_WORD); int bitpos, xbitpos, big_endian_correction = 0; |