Declared more inline functions static, such that the compiler can omit the out-of-line code.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8201 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/exp-drd/pub_drd_bitmap.h b/exp-drd/pub_drd_bitmap.h
index baa9934..981e74e 100644
--- a/exp-drd/pub_drd_bitmap.h
+++ b/exp-drd/pub_drd_bitmap.h
@@ -56,6 +56,9 @@
// Function declarations.
struct bitmap* bm_new(void);
void bm_delete(struct bitmap* const bm);
+void bm_access_range(struct bitmap* const bm,
+ const Addr a1, const Addr a2,
+ const BmAccessTypeT access_type);
void bm_access_range_load(struct bitmap* const bm,
const Addr a1, const Addr a2);
void bm_access_load_1(struct bitmap* const bm, const Addr a1);