8296162: [aarch64] Remove unused Address::_is_lval

Reviewed-by: chagedorn, aph
This commit is contained in:
Kim Barrett 2022-11-01 17:15:19 +00:00
parent 15b8b45178
commit 2fb64a4a4f
2 changed files with 0 additions and 7 deletions

View File

@ -238,7 +238,6 @@ void Assembler::add_sub_immediate(Instruction_aarch64 &current_insn,
#undef starti
Address::Address(address target, relocInfo::relocType rtype) : _mode(literal){
_is_lval = false;
_target = target;
switch (rtype) {
case relocInfo::oop_type:

View File

@ -372,11 +372,6 @@ class Address {
RelocationHolder _rspec;
// Typically we use AddressLiterals we want to use their rval
// However in some situations we want the lval (effect address) of
// the item. We provide a special factory for making those lvals.
bool _is_lval;
// If the target is far we'll need to load the ea of this to a
// register to reach it. Otherwise if near we can do PC-relative
// addressing.
@ -405,7 +400,6 @@ class Address {
Address(address target, RelocationHolder const& rspec)
: _mode(literal),
_rspec(rspec),
_is_lval(false),
_target(target) { }
Address(address target, relocInfo::relocType rtype = relocInfo::external_word_type);
Address(Register base, RegisterOrConstant index, extend ext = lsl())