diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-20 00:35:42 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-20 00:35:42 +0000 |
commit | b1924c4bbca05ceb4cfee27342cf1a5e4ee94e5e (patch) | |
tree | 76be7f9aafbf2a7cead5502b9c955038688e5e31 /gcc/expmed.c | |
parent | c3b77a56c7ef5a42c58a0e16b1d915464f4fd38c (diff) | |
download | gcc-b1924c4bbca05ceb4cfee27342cf1a5e4ee94e5e.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20629 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expmed.c')
-rw-r--r-- | gcc/expmed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expmed.c b/gcc/expmed.c index e81eb0a1b01..d952d1b0ab8 100644 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -1614,7 +1614,7 @@ extract_split_bit_field (op0, bitsize, bitpos, unsignedp, align) { int unit; int bitsdone = 0; - rtx result; + rtx result = NULL_RTX; int first = 1; /* Make sure UNIT isn't larger than BITS_PER_WORD, we can only handle that |