--- old/src/hotspot/os_cpu/linux_arm/atomic_linux_arm.hpp 2019-11-21 11:54:06.287872113 +0100 +++ new/src/hotspot/os_cpu/linux_arm/atomic_linux_arm.hpp 2019-11-21 11:54:06.079868595 +0100 @@ -86,11 +86,11 @@ template<> template -inline T Atomic::PlatformXchg<4>::operator()(T exchange_value, - T volatile* dest, +inline T Atomic::PlatformXchg<4>::operator()(T volatile* dest, + T exchange_value, atomic_memory_order order) const { STATIC_ASSERT(4 == sizeof(T)); - return xchg_using_helper(os::atomic_xchg_func, exchange_value, dest); + return xchg_using_helper(os::atomic_xchg_func, dest, exchange_value); }