From: Nicholas Nethercote Date: Sun, 27 Mar 2005 03:17:52 +0000 (+0000) Subject: VG_(bbs_done) doesn't need to be tool-visible. X-Git-Tag: svn/VALGRIND_3_0_0~857 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68647c085d022e6d1ca1539183cb5b00b3e2f94b;p=thirdparty%2Fvalgrind.git VG_(bbs_done) doesn't need to be tool-visible. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3461 --- diff --git a/coregrind/core.h b/coregrind/core.h index 7236aaf179..2faf8cefea 100644 --- a/coregrind/core.h +++ b/coregrind/core.h @@ -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 diff --git a/include/tool.h.base b/include/tool.h.base index 3ed497dde3..26634aa202 100644 --- a/include/tool.h.base +++ b/include/tool.h.base @@ -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))