From c6a9c7a38dd3c3badfc1d41dbfc19bb164eef3b8 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Wed, 18 Feb 2015 12:58:56 +0000 Subject: [PATCH] For PDB stats printing, don't print the number of inl-info records, since it's always zero. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14943 --- coregrind/m_debuginfo/debuginfo.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/coregrind/m_debuginfo/debuginfo.c b/coregrind/m_debuginfo/debuginfo.c index ce37e5fa28..5d235ac015 100644 --- a/coregrind/m_debuginfo/debuginfo.c +++ b/coregrind/m_debuginfo/debuginfo.c @@ -1411,10 +1411,8 @@ void VG_(di_notify_pdb_debuginfo)( Int fd_obj, Addr avma_obj, if (VG_(clo_verbosity) > 0) { VG_(message)(Vg_UserMsg, "LOAD_PDB_DEBUGINFO: done: " - "%lu syms, %lu src locs, " - "%lu src locs, %lu fpo recs\n", - di->symtab_used, di->loctab_used, - di->inltab_used, di->fpo_size); + "%lu syms, %lu src locs, %lu fpo recs\n", + di->symtab_used, di->loctab_used, di->fpo_size); } } -- 2.47.3