From c16ddde3e34e6c8c948dffe990512544fad84767 Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Sat, 20 Jun 1998 00:35:42 +0000 Subject: 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 --- gcc/calls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/calls.c') 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; -- cgit v1.1