aboutsummaryrefslogtreecommitdiff
path: root/gprofng
diff options
context:
space:
mode:
authorRuud van der Pas <ruud.vanderpas@oracle.com>2024-02-27 18:29:55 +0000
committerVladimir Mezentsev <vladimir.mezentsev@oracle.com>2024-02-28 16:32:29 -0800
commit3243d790ee32aa8eda69226d81b1e79dbd1dcd87 (patch)
tree191e167d875149ca73fb74999ec628423f857f3c /gprofng
parentb081c003ff88bc14f238f53a12e7c3fb26f0cd35 (diff)
downloadbinutils-3243d790ee32aa8eda69226d81b1e79dbd1dcd87.zip
binutils-3243d790ee32aa8eda69226d81b1e79dbd1dcd87.tar.gz
binutils-3243d790ee32aa8eda69226d81b1e79dbd1dcd87.tar.bz2
gprofng: change use of bignum to use of bigint
Change the statement "use bignum" to "use bigint". This is sufficient for gp-display-html to work and removes the dependency on bignum. gprofng/ChangeLog 2024-02-27 Ruud van der Pas <ruud.vanderpas@oracle.com> PR 31390 * gprofng/gp-display-html: One line change to "use bigint".
Diffstat (limited to 'gprofng')
-rw-r--r--gprofng/gp-display-html/gp-display-html.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/gprofng/gp-display-html/gp-display-html.in b/gprofng/gp-display-html/gp-display-html.in
index 6f37ca2..306c99a 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;
-use bignum;
+use bigint;
use List::Util qw (max);
use Cwd qw (abs_path cwd);
use File::Basename;