diff options
author | Richard Henderson <rth@cygnus.com> | 1998-04-05 17:13:47 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1998-04-05 17:13:47 -0700 |
commit | 59dd0a31bcce5a406584006bba685be4ddda998b (patch) | |
tree | 5ad3de633fc726ef1d3e52973e4734ae6bed24c5 /gcc | |
parent | f31fce3f85e988e25ba43447f402413245969aac (diff) | |
download | gcc-59dd0a31bcce5a406584006bba685be4ddda998b.zip gcc-59dd0a31bcce5a406584006bba685be4ddda998b.tar.gz gcc-59dd0a31bcce5a406584006bba685be4ddda998b.tar.bz2 |
alpha.c (alpha_expand_block_clear): Add missing offset arg to alpha_expand_unaligned_store_words.
* alpha.c (alpha_expand_block_clear): Add missing offset arg to
alpha_expand_unaligned_store_words.
From-SVN: r19013
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/alpha/alpha.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7ee2053..243e9da 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Mon Apr 6 00:08:50 1998 Richard Henderson <rth@cygnus.com> + + * alpha.c (alpha_expand_block_clear): Add missing offset arg to + alpha_expand_unaligned_store_words. + Sun Apr 5 21:31:24 1998 John Wehle (john@feith.com) * i386.md (movsf_push, movsf_mem): Remove. diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 4c031e8..62b346e 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -2051,7 +2051,7 @@ alpha_expand_block_clear (operands) { words = bytes / 8; - alpha_expand_unaligned_store_words (NULL, orig_dst, words); + alpha_expand_unaligned_store_words (NULL, orig_dst, words, 0); bytes -= words * 8; ofs = words * 8; |