X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Flibpspp%2Frange-tower-test.c;h=32b5efffe74e173a3b9d5bb88840ed54b1f259b4;hb=b525a9596e60d5ae4c6c464b4a426b77ade3dd72;hp=9270753a02adb521bd9f16ae1b3c397cdc79e8b8;hpb=89c05dfe33f9542e60e66dd383f7a514849b5947;p=pspp diff --git a/tests/libpspp/range-tower-test.c b/tests/libpspp/range-tower-test.c index 9270753a02..32b5efffe7 100644 --- a/tests/libpspp/range-tower-test.c +++ b/tests/libpspp/range-tower-test.c @@ -346,16 +346,16 @@ make_pattern (unsigned int pattern, unsigned long int offset) return rt; } -/* Returns an unsigned int with bits OFS...OFS+CNT (exclusive) +/* Returns an unsigned int with bits OFS...OFS+N (exclusive) tower to 1, other bits tower to 0. */ static unsigned int -bit_range (unsigned int ofs, unsigned int cnt) +bit_range (unsigned int ofs, unsigned int n) { assert (ofs < UINT_BIT); - assert (cnt <= UINT_BIT); - assert (ofs + cnt <= UINT_BIT); + assert (n <= UINT_BIT); + assert (ofs + n <= UINT_BIT); - return cnt < UINT_BIT ? ((1u << cnt) - 1) << ofs : UINT_MAX; + return n < UINT_BIT ? ((1u << n) - 1) << ofs : UINT_MAX; } /* Tests setting all possible ranges of 1s into all possible range sets (up to