From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2041) id 18FEB3858D39; Thu, 29 Feb 2024 01:18:46 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 18FEB3858D39 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1709169527; bh=voiXLXTklMxCg80lRwZGNCugByc3QbRGdp/RLexpmsE=; h=From:To:Subject:Date:From; b=c/mK2VdbdM9+6GsLGC7XRouDouFcyC0Umo9fhyxjwzXerHRsfeAjfthEC1yGmuZzN /hA5mh6NxOSDIazoxix74v9MSYZO5p/ILVs6J5Rrym0d3bK6q6whOftiTelBveuZTo mLQYQMkTugF7A2itxEXOtJvtVlVO8XDGpuwFwFkM= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Vladimir Mezentsev To: bfd-cvs@sourceware.org, gdb-cvs@sourceware.org Subject: [binutils-gdb] gprofng: change use of bignum to use of bigint X-Act-Checkin: binutils-gdb X-Git-Author: Ruud van der Pas X-Git-Refname: refs/heads/master X-Git-Oldrev: b081c003ff88bc14f238f53a12e7c3fb26f0cd35 X-Git-Newrev: 3243d790ee32aa8eda69226d81b1e79dbd1dcd87 Message-Id: <20240229011847.18FEB3858D39@sourceware.org> Date: Thu, 29 Feb 2024 01:18:46 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D3243d790ee32= aa8eda69226d81b1e79dbd1dcd87 commit 3243d790ee32aa8eda69226d81b1e79dbd1dcd87 Author: Ruud van der Pas Date: Tue Feb 27 18:29:55 2024 +0000 gprofng: change use of bignum to use of bigint =20 Change the statement "use bignum" to "use bigint". This is sufficient for gp-display-html to work and removes the dependency on bignum. =20 gprofng/ChangeLog 2024-02-27 Ruud van der Pas =20 PR 31390 * gprofng/gp-display-html: One line change to "use bigint". Diff: --- gprofng/gp-display-html/gp-display-html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gprofng/gp-display-html/gp-display-html.in b/gprofng/gp-displa= y-html/gp-display-html.in index 6f37ca282e7..306c99a0ec3 100644 --- a/gprofng/gp-display-html/gp-display-html.in +++ b/gprofng/gp-display-html/gp-display-html.in @@ -25,7 +25,7 @@ use warnings; # Disable before release # use Perl::Critic; =20 -use bignum; +use bigint; use List::Util qw (max); use Cwd qw (abs_path cwd); use File::Basename;