8184030: TestUseRTMLockingOptionOnUnsupportedVM - RTM locking optimization not supported is missing
authorjcm
Thu, 24 May 2018 22:21:00 -0700
changeset 50261 3fd701692627
parent 50260 46c67f5e27c2
child 50262 131a631b271a
8184030: TestUseRTMLockingOptionOnUnsupportedVM - RTM locking optimization not supported is missing Summary: corrected the rtm unsupported error message for emulated client. Reviewed-by: thartmann, gromero
src/hotspot/cpu/x86/vm_version_x86.cpp
--- a/src/hotspot/cpu/x86/vm_version_x86.cpp	Thu May 24 17:12:15 2018 -0700
+++ b/src/hotspot/cpu/x86/vm_version_x86.cpp	Thu May 24 22:21:00 2018 -0700
@@ -923,7 +923,7 @@
       // Only C2 does RTM locking optimization.
       // Can't continue because UseRTMLocking affects UseBiasedLocking flag
       // setting during arguments processing. See use_biased_locking().
-      vm_exit_during_initialization("RTM locking optimization is not supported in emulated client VM");
+      vm_exit_during_initialization("RTM locking optimization is not supported in this VM");
     }
     if (is_intel_family_core()) {
       if ((_model == CPU_MODEL_HASWELL_E3) ||