mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
8341510: Optimize StackMapGenerator::processFieldInstructions
Reviewed-by: liach
This commit is contained in:
parent
b42fbf43df
commit
f8db3a831b
4 changed files with 7 additions and 13 deletions
|
@ -50,7 +50,7 @@ public sealed interface ConstantDynamicEntry
|
|||
* {@return a symbolic descriptor for the dynamic constant's type}
|
||||
*/
|
||||
default ClassDesc typeSymbol() {
|
||||
return Util.fieldTypeSymbol(nameAndType());
|
||||
return Util.fieldTypeSymbol(type());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -44,6 +44,6 @@ public sealed interface FieldRefEntry extends MemberRefEntry
|
|||
* {@return a symbolic descriptor for the field's type}
|
||||
*/
|
||||
default ClassDesc typeSymbol() {
|
||||
return Util.fieldTypeSymbol(nameAndType());
|
||||
return Util.fieldTypeSymbol(type());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue