]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Source code cleanup - no functionality has been changed.
authorBart Van Assche <bvanassche@acm.org>
Sun, 7 Mar 2010 20:00:18 +0000 (20:00 +0000)
committerBart Van Assche <bvanassche@acm.org>
Sun, 7 Mar 2010 20:00:18 +0000 (20:00 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11077

drd/drd_vc.h

index 8c98ab6b0ada54507df9b0b23afc1a2933096590..d35b7e51cb63671df886a24a81e96af0d9857205 100644 (file)
@@ -108,14 +108,14 @@ Bool DRD_(vc_lte)(const VectorClock* const vc1, const VectorClock* const vc2)
    for (i = 0; i < vc1->size; i++)
    {
       while (j < vc2->size && vc2->vc[j].threadid < vc1->vc[i].threadid)
-      {
          j++;
-      }
       if (j >= vc2->size || vc2->vc[j].threadid > vc1->vc[i].threadid)
          return False;
 #ifdef ENABLE_DRD_CONSISTENCY_CHECKS
-      /* This assert statement has been commented out because of performance */
-      /* reasons.*/
+      /*
+       * This assert statement has been commented out because of performance
+       * reasons.
+       */
       tl_assert(j < vc2->size && vc2->vc[j].threadid == vc1->vc[i].threadid);
 #endif
       if (vc1->vc[i].count > vc2->vc[j].count)