]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Silence two instances of -Wcalloc-transposed-args
authorPeter Damianov <peter0x44@disroot.org>
Fri, 3 May 2024 08:02:35 +0000 (01:02 -0700)
committerRichard Biener <rguenther@suse.de>
Fri, 3 May 2024 11:24:10 +0000 (13:24 +0200)
libgcc/
* libgcov-util.c (tag_counters): Swap order of arguments to xcalloc.
(topen_to_memory_representation): Likewise.

Signed-off-by: Peter Damianov <peter0x44@disroot.org>
libgcc/libgcov-util.c

index ba4b90a480dc279ce4ca8d1c0e2a362024a327ef..f443408c4ab7bf1a17e2eda6431fb5bd8f8b1ab6 100644 (file)
@@ -211,8 +211,8 @@ tag_counters (unsigned tag, int length)
   gcc_assert (k_ctrs[tag_ix].num == 0);
   k_ctrs[tag_ix].num = n_counts;
 
-  k_ctrs[tag_ix].values = values = (gcov_type *) xcalloc (sizeof (gcov_type),
-                                                         n_counts);
+  k_ctrs[tag_ix].values = values = (gcov_type *) xcalloc (n_counts,
+                                                         sizeof (gcov_type));
   gcc_assert (values);
 
   if (length > 0)
@@ -526,7 +526,7 @@ topn_to_memory_representation (struct gcov_ctr_info *info)
       if (n > 0)
        {
          struct gcov_kvp *tuples
-           = (struct gcov_kvp *)xcalloc (sizeof (struct gcov_kvp), n);
+           = (struct gcov_kvp *)xcalloc (n, sizeof (struct gcov_kvp));
          for (unsigned i = 0; i < n - 1; i++)
            tuples[i].next = &tuples[i + 1];
          for (unsigned i = 0; i < n; i++)