mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8191683: Compile problem on ARM after JDK-8043070
Make nmethod::_state explicitly a signed char Reviewed-by: thartmann
This commit is contained in:
parent
525a5e52e3
commit
b6d123f660
2 changed files with 3 additions and 3 deletions
|
@ -830,7 +830,7 @@ typedef PaddedEnd<ObjectMonitor> PaddedObjectMonitor;
|
|||
nonstatic_field(nmethod, _osr_link, nmethod*) \
|
||||
nonstatic_field(nmethod, _scavenge_root_link, nmethod*) \
|
||||
nonstatic_field(nmethod, _scavenge_root_state, jbyte) \
|
||||
nonstatic_field(nmethod, _state, volatile char) \
|
||||
nonstatic_field(nmethod, _state, volatile signed char) \
|
||||
nonstatic_field(nmethod, _exception_offset, int) \
|
||||
nonstatic_field(nmethod, _orig_pc_offset, int) \
|
||||
nonstatic_field(nmethod, _stub_offset, int) \
|
||||
|
@ -1350,8 +1350,8 @@ typedef PaddedEnd<ObjectMonitor> PaddedObjectMonitor;
|
|||
declare_integer_type(int) \
|
||||
declare_integer_type(long) \
|
||||
declare_integer_type(char) \
|
||||
declare_integer_type(volatile signed char) \
|
||||
declare_unsigned_integer_type(unsigned char) \
|
||||
declare_unsigned_integer_type(volatile char) \
|
||||
declare_unsigned_integer_type(u_char) \
|
||||
declare_unsigned_integer_type(unsigned int) \
|
||||
declare_unsigned_integer_type(uint) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue