From 5fbe6a8e73b52c6ebc28b9111456226c1cda6472 Mon Sep 17 00:00:00 2001 From: Prathamesh Kulkarni Date: Tue, 4 May 2021 11:11:18 +0530 Subject: [PATCH] Fix typo in builtins.c. gcc/ChangeLog: 2021-05-04 Prathamesh Kulkarni * builtins.c (try_store_by_multiple_pieces): Fix constfun's prototype. --- gcc/builtins.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/builtins.c b/gcc/builtins.c index b0471286ac1..14cfa57ad68 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) { -- 2.11.4.GIT