Fix typo in previous patch: should use struct mallinfo2.

PR gold/26585
	* main.cc (main): Fix typo in previous patch.
This commit is contained in:
Cary Coutant 2021-03-19 15:29:49 -07:00
parent 9331846e44
commit cc1849716f
2 changed files with 8 additions and 2 deletions

View File

@ -1,8 +1,14 @@
2021-03-19 Duncan Simpson <dr.duncan.p.simpson@gmail.com>
2021-03-19 Cary Coutant <ccoutant@gmail.com>
PR gold/26585
* main.cc (main): Fix typo in previous patch.
2021-03-19 Duncan Simpson <dr.duncan.p.simpson@gmail.com>
PR gold/26585
* configure.ac: Add check for mallinfo2.
* configure: Regenerate.
* config.in: Regenerate from previous commit.
* main.cc (main): Use mallinfo2 if available.
2021-03-19 Cary Coutant <ccoutant@gmail.com>

View File

@ -291,7 +291,7 @@ main(int argc, char** argv)
elapsed.wall / 1000, (elapsed.wall % 1000) * 1000);
#if defined(HAVE_MALLINFO2)
struct mallinfo m = mallinfo2();
struct mallinfo2 m = mallinfo2();
fprintf(stderr, _("%s: total space allocated by malloc: %lld bytes\n"),
program_name, static_cast<long long>(m.arena));
#elif defined(HAVE_MALLINFO)