]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Reordered declarations.
authorBart Van Assche <bvanassche@acm.org>
Sat, 10 May 2008 08:22:45 +0000 (08:22 +0000)
committerBart Van Assche <bvanassche@acm.org>
Sat, 10 May 2008 08:22:45 +0000 (08:22 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8026

exp-drd/pub_drd_bitmap.h

index 1c2205080579ab17129e406823f99e409f3306ff..32ac74bd3fd4f09239c2f70a19335b17daddd408 100644 (file)
@@ -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);