mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8217998: Remove method_type field associated with the appendix field of an indy or method handle call
Removed the unused method_type field associated with the appendix field of an indy or method handle call. Reviewed-by: acorn, coleenp, dlong
This commit is contained in:
parent
29245f8878
commit
9631b06423
19 changed files with 141 additions and 162 deletions
|
@ -71,8 +71,8 @@ inline bool ConstantPoolCacheEntry::has_appendix() const {
|
|||
return (!is_f1_null()) && (_flags & (1 << has_appendix_shift)) != 0;
|
||||
}
|
||||
|
||||
inline bool ConstantPoolCacheEntry::has_method_type() const {
|
||||
return (!is_f1_null()) && (_flags & (1 << has_method_type_shift)) != 0;
|
||||
inline bool ConstantPoolCacheEntry::has_local_signature() const {
|
||||
return (!is_f1_null()) && (_flags & (1 << has_local_signature_shift)) != 0;
|
||||
}
|
||||
|
||||
inline intx ConstantPoolCacheEntry::flags_ord() const { return (intx)OrderAccess::load_acquire(&_flags); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue