--- old/src/hotspot/os_cpu/linux_ppc/atomic_linux_ppc.hpp 2017-10-11 09:30:55.798873895 -0400 +++ new/src/hotspot/os_cpu/linux_ppc/atomic_linux_ppc.hpp 2017-10-11 09:30:55.275336742 -0400 @@ -134,7 +134,7 @@ template inline T Atomic::PlatformXchg<4>::operator()(T exchange_value, T volatile* dest) const { - // Note that xchg_ptr doesn't necessarily do an acquire + // Note that xchg doesn't necessarily do an acquire // (see synchronizer.cpp). T old_value; @@ -173,7 +173,7 @@ inline T Atomic::PlatformXchg<8>::operator()(T exchange_value, T volatile* dest) const { STATIC_ASSERT(8 == sizeof(T)); - // Note that xchg_ptr doesn't necessarily do an acquire + // Note that xchg doesn't necessarily do an acquire // (see synchronizer.cpp). T old_value;