Skip to content

Commit 45e8973

Browse files
committedNov 29, 2021
8277896: Remove unused BOTConstants member methods
Reviewed-by: kbarrett
1 parent e5676f8 commit 45e8973

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed
 

‎src/hotspot/share/gc/shared/blockOffsetTable.hpp

-7
Original file line numberDiff line numberDiff line change
@@ -67,17 +67,10 @@ class BOTConstants : public AllStatic {
6767
static size_t power_to_cards_back(uint i) {
6868
return (size_t)1 << (LogBase * i);
6969
}
70-
static size_t power_to_words_back(uint i) {
71-
return power_to_cards_back(i) * N_words;
72-
}
7370
static size_t entry_to_cards_back(u_char entry) {
7471
assert(entry >= N_words, "Precondition");
7572
return power_to_cards_back(entry - N_words);
7673
}
77-
static size_t entry_to_words_back(u_char entry) {
78-
assert(entry >= N_words, "Precondition");
79-
return power_to_words_back(entry - N_words);
80-
}
8174
};
8275

8376
//////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)
Please sign in to comment.