diff -r 2787e48d6df9 -r d637fd28a6c3 hotspot/src/share/vm/opto/library_call.cpp --- a/hotspot/src/share/vm/opto/library_call.cpp Fri Nov 22 12:14:09 2013 -0800 +++ b/hotspot/src/share/vm/opto/library_call.cpp Tue Nov 26 18:38:19 2013 -0800 @@ -3105,10 +3105,10 @@ insert_mem_bar(Op_MemBarCPUOrder); switch(id) { case vmIntrinsics::_loadFence: - insert_mem_bar(Op_MemBarAcquire); + insert_mem_bar(Op_LoadFence); return true; case vmIntrinsics::_storeFence: - insert_mem_bar(Op_MemBarRelease); + insert_mem_bar(Op_StoreFence); return true; case vmIntrinsics::_fullFence: insert_mem_bar(Op_MemBarVolatile);