On 7/23/21 8:21 AM, Sebastian Huber wrote:
On 23/07/2021 07:31, Martin Liška wrote:
+static void *
+allocate_handler (unsigned size, void *unused)
+{
+  (void)unused;
+  return xmalloc (size);
+}
+#endif /* NEED_L_GCOV */
+
+#if defined(NEED_L_GCOV) || defined(NEED_L_GCOV_INFO_TO_GCDA)
+static inline void

Likewise here.

+dump_unsigned (gcov_unsigned_t word,
+           void (*dump) (const void *, unsigned, void *),
+           void *arg)
+{
+  (*dump) (&word, sizeof (word), arg);
+}

Likewise here.

Adding the gcov_ prefix would make some lines longer than 79 characters. We 
already have several functions in this file without a gocv_ prefix, for example 
write_one_data(), write_topn_counters().


All right, I don't insist on that.

Cheers,
Martin

Reply via email to