mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8132051: Better byte behavior
Co-authored-by: Roland Westerlin <roland.westerlin@oracle.com> Co-authored-by: Vladimir Kozlov <vladimir.kozlov@oracle.com> Co-authored-by: John Rose <john.r.rose@oracle.com> Reviewed-by: bdelsart, roland, kvn, jrose, ahgross
This commit is contained in:
parent
ed18f94d21
commit
200784d505
40 changed files with 514 additions and 88 deletions
|
@ -1077,7 +1077,8 @@ IRT_ENTRY(void, InterpreterRuntime::post_field_modification(JavaThread *thread,
|
|||
char sig_type = '\0';
|
||||
|
||||
switch(cp_entry->flag_state()) {
|
||||
case btos: sig_type = 'Z'; break;
|
||||
case btos: sig_type = 'B'; break;
|
||||
case ztos: sig_type = 'Z'; break;
|
||||
case ctos: sig_type = 'C'; break;
|
||||
case stos: sig_type = 'S'; break;
|
||||
case itos: sig_type = 'I'; break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue