From: Martin Liska Date: Fri, 3 Jul 2020 11:45:45 +0000 (+0200) Subject: gcov-dump: fix build for i386 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6c9e35a569f5a46fed7c8de6ac22545cb845a913;p=gcc.git gcov-dump: fix build for i386 gcc/ChangeLog: PR bootstrap/96046 * gcov-dump.c (tag_function): Use gcov_position_t type. Co-Authored-By: Rainer Orth --- diff --git a/gcc/gcov-dump.c b/gcc/gcov-dump.c index 97ff27861c6..7e412c8d329 100644 --- a/gcc/gcov-dump.c +++ b/gcc/gcov-dump.c @@ -299,7 +299,7 @@ tag_function (const char *filename ATTRIBUTE_UNUSED, unsigned tag ATTRIBUTE_UNUSED, int length, unsigned depth ATTRIBUTE_UNUSED) { - long pos = gcov_position (); + gcov_position_t pos = gcov_position (); if (!length) printf (" placeholder"); @@ -309,7 +309,7 @@ tag_function (const char *filename ATTRIBUTE_UNUSED, printf (", lineno_checksum=0x%08x", gcov_read_unsigned ()); printf (", cfg_checksum=0x%08x", gcov_read_unsigned ()); - if (gcov_position () - pos < length) + if (gcov_position () - pos < (gcov_position_t) length) { const char *name;