8300113: C2: Single-bit fields with signed type in TypePtr after JDK-8297933

Reviewed-by: roland, thartmann
This commit is contained in:
Aleksey Shipilev 2023-01-16 08:49:02 +00:00
parent 83f2c9a2b2
commit abfd7e89f6

View File

@ -883,9 +883,9 @@ protected:
void raw_add(ciKlass* interface);
void add(ciKlass* interface);
void verify() const;
int _hash_computed:1;
int _exact_klass_computed:1;
int _is_loaded_computed:1;
uint _hash_computed:1;
uint _exact_klass_computed:1;
uint _is_loaded_computed:1;
int _hash;
ciKlass* _exact_klass;
bool _is_loaded;