From: Bart Van Assche Date: Sat, 10 May 2008 08:22:45 +0000 (+0000) Subject: Reordered declarations. X-Git-Tag: svn/VALGRIND_3_4_0~612 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7219fd25ab61cc2eb786ece93fde4a67462fc1d9;p=thirdparty%2Fvalgrind.git Reordered declarations. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8026 --- diff --git a/exp-drd/pub_drd_bitmap.h b/exp-drd/pub_drd_bitmap.h index 1c22050805..32ac74bd3f 100644 --- a/exp-drd/pub_drd_bitmap.h +++ b/exp-drd/pub_drd_bitmap.h @@ -62,12 +62,12 @@ void bm_access_load_1(struct bitmap* const bm, const Addr a1); void bm_access_load_2(struct bitmap* const bm, const Addr a1); void bm_access_load_4(struct bitmap* const bm, const Addr a1); void bm_access_load_8(struct bitmap* const bm, const Addr a1); +void bm_access_range_store(struct bitmap* const bm, + const Addr a1, const Addr a2); void bm_access_store_1(struct bitmap* const bm, const Addr a1); void bm_access_store_2(struct bitmap* const bm, const Addr a1); void bm_access_store_4(struct bitmap* const bm, const Addr a1); void bm_access_store_8(struct bitmap* const bm, const Addr a1); -void bm_access_range_store(struct bitmap* const bm, - const Addr a1, const Addr a2); Bool bm_has(const struct bitmap* const bm, const Addr a1, const Addr a2, const BmAccessTypeT access_type);