mirror of
https://github.com/JetBrains/JetBrainsRuntime.git
synced 2025-12-06 09:29:38 +01:00
JBR-5183 - fix error: invalid use of incomplete type 'struct Atomic::StoreImpl
This commit is contained in:
committed by
Vitaly Provodin
parent
542c868809
commit
241c900339
@@ -436,7 +436,7 @@ void ConstantPoolCacheEntry::set_method_handle_common(const constantPoolHandle&
|
||||
assert(AllowEnhancedClassRedefinition || old_oop == nullptr, "init just once");
|
||||
}
|
||||
|
||||
Atomic::release_store(&_flags, _flags & ~(1u << is_f1_null_dcevm_shift));
|
||||
Atomic::release_store(&_flags, (intx) _flags & ~(1u << is_f1_null_dcevm_shift));
|
||||
|
||||
release_set_f1(adapter); // This must be the last one to set (see NOTE above)!
|
||||
|
||||
|
||||
Reference in New Issue
Block a user