Skip to content

Commit 5792f35

Browse files
rmcilroyCommit Bot
authored andcommitted
[Cleanup] Delete unused function SkipZeroBits.
Change-Id: I2b1cf44670e12b22bbf5115742e1d62dafec7304 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1912220 Commit-Queue: Ross McIlroy <rmcilroy@chromium.org> Auto-Submit: Ross McIlroy <rmcilroy@chromium.org> Reviewed-by: Dan Elphick <delphick@chromium.org> Cr-Commit-Position: refs/heads/master@{#64924}
1 parent 8fe2976 commit 5792f35

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

src/utils/bit-vector.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,6 @@ class V8_EXPORT_PRIVATE BitVector : public ZoneObject {
6363
}
6464

6565
private:
66-
uintptr_t SkipZeroBits(uintptr_t val) {
67-
uintptr_t trailing_zeros = base::bits::CountTrailingZeros(val);
68-
current_ += trailing_zeros;
69-
return val >> trailing_zeros;
70-
}
71-
7266
BitVector* target_;
7367
int current_index_;
7468
uintptr_t current_value_;

0 commit comments

Comments
 (0)