]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
For PDB stats printing, don't print the number of inl-info records,
authorJulian Seward <jseward@acm.org>
Wed, 18 Feb 2015 12:58:56 +0000 (12:58 +0000)
committerJulian Seward <jseward@acm.org>
Wed, 18 Feb 2015 12:58:56 +0000 (12:58 +0000)
since it's always zero.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14943

coregrind/m_debuginfo/debuginfo.c

index ce37e5fa28cee61c76f433fccc414b2896c6dbca..5d235ac015ad75a447c02750d4e1491bcf915769 100644 (file)
@@ -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);
      }
    }