mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8212774: Remove dead code touching Klass::_lower_dimension
Found dead code removal while looking at usage of Compile_lock. This dead code doesn't have Compile_lock but other code touching Klass::_{upper,lower}_dimension do. Reviewed-by: shade
This commit is contained in:
parent
a623db2148
commit
932d2c6ba6
3 changed files with 1 additions and 41 deletions
|
@ -61,11 +61,9 @@ class ArrayKlass: public Klass {
|
|||
inline Klass* higher_dimension_acquire() const; // load with acquire semantics
|
||||
void set_higher_dimension(Klass* k) { _higher_dimension = k; }
|
||||
inline void release_set_higher_dimension(Klass* k); // store with release semantics
|
||||
Klass** adr_higher_dimension() { return (Klass**)&this->_higher_dimension;}
|
||||
|
||||
Klass* lower_dimension() const { return _lower_dimension; }
|
||||
void set_lower_dimension(Klass* k) { _lower_dimension = k; }
|
||||
Klass** adr_lower_dimension() { return (Klass**)&this->_lower_dimension;}
|
||||
|
||||
// offset of first element, including any padding for the sake of alignment
|
||||
int array_header_in_bytes() const { return layout_helper_header_size(layout_helper()); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue