From 2a03d979a28f74018aedcd7ed6572faf6244586b Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Wed, 17 May 2023 10:17:16 +0200 Subject: [PATCH] wide-int: Fix up function comment When looking into _BitInt support, I've noticed unterminated parens in a function comment. Fixing thusly. 2023-05-17 Jakub Jelinek * wide-int.cc (wi::from_array): Add missing closing paren in function comment. --- gcc/wide-int.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/wide-int.cc b/gcc/wide-int.cc index 8c8175765053..c0987aa4d63a 100644 --- a/gcc/wide-int.cc +++ b/gcc/wide-int.cc @@ -139,7 +139,7 @@ canonize_uhwi (HOST_WIDE_INT *val, unsigned int precision) /* Copy XLEN elements from XVAL to VAL. If NEED_CANON, canonize the result for an integer with precision PRECISION. Return the length - of VAL (after any canonization. */ + of VAL (after any canonization). */ unsigned int wi::from_array (HOST_WIDE_INT *val, const HOST_WIDE_INT *xval, unsigned int xlen, unsigned int precision, bool need_canon) -- 2.47.2