src/share/vm/utilities/bitMap.cpp

changeset 1244
6e2afda171db
parent 777
37f87013dfd8
child 1279
bd02caa94611
     1.1 --- a/src/share/vm/utilities/bitMap.cpp	Sun Jun 07 22:08:24 2009 -0700
     1.2 +++ b/src/share/vm/utilities/bitMap.cpp	Thu Jun 11 13:31:01 2009 -0700
     1.3 @@ -41,19 +41,6 @@
     1.4    resize(size_in_bits, in_resource_area);
     1.5  }
     1.6  
     1.7 -
     1.8 -void BitMap::verify_index(idx_t index) const {
     1.9 -    assert(index < _size, "BitMap index out of bounds");
    1.10 -}
    1.11 -
    1.12 -void BitMap::verify_range(idx_t beg_index, idx_t end_index) const {
    1.13 -#ifdef ASSERT
    1.14 -    assert(beg_index <= end_index, "BitMap range error");
    1.15 -    // Note that [0,0) and [size,size) are both valid ranges.
    1.16 -    if (end_index != _size)  verify_index(end_index);
    1.17 -#endif
    1.18 -}
    1.19 -
    1.20  void BitMap::resize(idx_t size_in_bits, bool in_resource_area) {
    1.21    assert(size_in_bits >= 0, "just checking");
    1.22    idx_t old_size_in_words = size_in_words();

mercurial