From: Jakub Jelinek Date: Wed, 17 May 2023 08:17:16 +0000 (+0200) Subject: wide-int: Fix up function comment X-Git-Tag: basepoints/gcc-15~9211 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a03d979a28f74018aedcd7ed6572faf6244586b;p=thirdparty%2Fgcc.git 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. --- 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)