clang: fix warning w/assert so that clang knows that there will be no division by zero

Change-Id: I98ac62a22f21043bb535a667a4f1f1537ccde2a4
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Reviewed-on: http://openocd.zylin.com/42
Tested-by: jenkins
Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
__archive__
Øyvind Harboe 2011-10-21 19:14:57 +02:00 committed by Øyvind Harboe
parent 4e079d18bf
commit c9f51acdc3
1 changed files with 2 additions and 1 deletions

View File

@ -3317,7 +3317,8 @@ static void writeGmon(uint32_t *samples, uint32_t sampleNum, const char *filenam
}
}
int addressSpace = (max-min + 1);
int addressSpace = (max - min + 1);
assert(addressSpace >= 2);
static const uint32_t maxBuckets = 16 * 1024; /* maximum buckets. */
uint32_t length = addressSpace;