--- old/src/hotspot/share/runtime/arguments.cpp 2019-02-28 15:42:24.488517316 -0500 +++ new/src/hotspot/share/runtime/arguments.cpp 2019-02-28 15:42:23.711829416 -0500 @@ -3917,6 +3917,12 @@ warning("Setting CompressedClassSpaceSize has no effect when compressed class pointers are not used"); } + // Treat the odd case where local verification is enabled but remote + // verification is not as if both were enabled. + if (BytecodeVerificationLocal && !BytecodeVerificationRemote) { + FLAG_SET_DEFAULT(BytecodeVerificationRemote, true); + } + #ifndef PRODUCT if (!LogVMOutput && FLAG_IS_DEFAULT(LogVMOutput)) { if (use_vm_log()) {