diff options
author | Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> | 2021-05-04 11:11:18 +0530 |
---|---|---|
committer | Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> | 2021-05-04 11:11:18 +0530 |
commit | 5fbe6a8e73b52c6ebc28b9111456226c1cda6472 (patch) | |
tree | 353ee5de36344d2376d88c86a341c6fea17b6130 | |
parent | da9e6e63d1ae22e530ec7baf59f6ed028bf05776 (diff) | |
download | gcc-5fbe6a8e73b52c6ebc28b9111456226c1cda6472.zip gcc-5fbe6a8e73b52c6ebc28b9111456226c1cda6472.tar.gz gcc-5fbe6a8e73b52c6ebc28b9111456226c1cda6472.tar.bz2 |
Fix typo in builtins.c.
gcc/ChangeLog:
2021-05-04 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
* builtins.c (try_store_by_multiple_pieces): Fix constfun's prototype.
-rw-r--r-- | gcc/builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index b047128..14cfa57 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -6743,7 +6743,7 @@ try_store_by_multiple_pieces (rtx to, rtx len, unsigned int ctz_len, &valc, align, true)) return false; - rtx (*constfun) (void *, HOST_WIDE_INT, scalar_int_mode); + rtx (*constfun) (void *, void *, HOST_WIDE_INT, scalar_int_mode); void *constfundata; if (val) { |