]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
VG_(bbs_done) doesn't need to be tool-visible.
authorNicholas Nethercote <njn@valgrind.org>
Sun, 27 Mar 2005 03:17:52 +0000 (03:17 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Sun, 27 Mar 2005 03:17:52 +0000 (03:17 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3461

coregrind/core.h
include/tool.h.base

index 7236aaf17942f149faae63b07fe294f396c2dc1b..2faf8cefea6461f284e339ed512e51fd44359bff 100644 (file)
@@ -1004,6 +1004,9 @@ extern void VG_(print_scheduler_stats) ( void );
 extern VexArch    VG_(vex_arch);
 extern VexSubArch VG_(vex_subarch);
 
+/* 64-bit counter for the number of basic blocks done. */
+extern ULong VG_(bbs_done);
+
 
 /* ---------------------------------------------------------------------
    Exports of vg_memory.c
index 3ed497dde3bf6f293ea3c28b74e51838f8fa7a10..26634aa202dd6500fb459b73932af3ecd4ee4d1a 100644 (file)
@@ -262,9 +262,6 @@ extern void VG_(popcc)  ( UInt cc );
 /* ------------------------------------------------------------------ */
 /* General stuff */
 
-/* 64-bit counter for the number of basic blocks done. */
-extern ULong VG_(bbs_done);
-
 /* Check if an address/whatever is aligned */
 #define VG_IS_4_ALIGNED(aaa_p)      (0 == (((Addr)(aaa_p)) & 0x3))
 #define VG_IS_8_ALIGNED(aaa_p)      (0 == (((Addr)(aaa_p)) & 0x7))