Typo in 32-bit bit

This commit is contained in:
Manuel Hässig 2026-07-29 08:39:29 +02:00 committed by GitHub
parent 84f0c5d0a6
commit f6229ab04f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4424,7 +4424,7 @@ void GraphBuilder::append_char_access(ciMethod* callee, bool is_store) {
Value offset = append(new ArithmeticOp(Bytecodes::_ladd, base, index_scaled, state_before));
#ifndef _LP64
offset = appenf(new Convert(Bytecodes::_l2i, offset, as_ValueType(T_INT)));
offset = append(new Convert(Bytecodes::_l2i, offset, as_ValueType(T_INT)));
#endif // _LP64
Instruction* load = append(new UnsafeGet(T_CHAR, array, offset, false));