summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2023-05-17 10:17:16 +0200
committerJakub Jelinek <jakub@redhat.com>2023-05-17 10:17:16 +0200
commit2a03d979a28f74018aedcd7ed6572faf6244586b (patch)
treedb7e2afefd5b5ff3260c628e35582d90837711dd
parent78327cf06e6b65fc9c614622c98f6a3f3bfb7784 (diff)
downloadgcc-2a03d979a28f74018aedcd7ed6572faf6244586b.tar.gz
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 <jakub@redhat.com> * wide-int.cc (wi::from_array): Add missing closing paren in function comment.
-rw-r--r--gcc/wide-int.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/wide-int.cc b/gcc/wide-int.cc
index 8c817576505..c0987aa4d63 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)