< prev index next >

src/hotspot/share/runtime/arguments.cpp

Print this page

        

*** 3915,3924 **** --- 3915,3930 ---- if (FLAG_IS_CMDLINE(CompressedClassSpaceSize) && !UseCompressedClassPointers) { 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()) { LogVMOutput = true; }
< prev index next >