Skip to content

Commit 92b18fc

Browse files
author
duke
committedNov 20, 2021
Automatic merge of jdk:master into master
2 parents 6ce039b + 0a9e76c commit 92b18fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/hotspot/share/interpreter/zero/bytecodeInterpreter.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2805,7 +2805,7 @@ void BytecodeInterpreter::run(interpreterState istate) {
28052805
UPDATE_PC_AND_TOS_AND_CONTINUE(4, 1);
28062806
}
28072807

2808-
CASE(_fast_faccess_0): {
2808+
CASE(_fast_iaccess_0): {
28092809
u2 index = Bytes::get_native_u2(pc+2);
28102810
ConstantPoolCacheEntry* cache = cp->entry_at(index);
28112811
int field_offset = cache->f2_as_index();
@@ -2820,7 +2820,7 @@ void BytecodeInterpreter::run(interpreterState istate) {
28202820
UPDATE_PC_AND_TOS_AND_CONTINUE(4, 1);
28212821
}
28222822

2823-
CASE(_fast_iaccess_0): {
2823+
CASE(_fast_faccess_0): {
28242824
u2 index = Bytes::get_native_u2(pc+2);
28252825
ConstantPoolCacheEntry* cache = cp->entry_at(index);
28262826
int field_offset = cache->f2_as_index();

0 commit comments

Comments
 (0)
Please sign in to comment.