src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp	Wed Apr 26 14:10:19 2017
--- new/src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp	Wed Apr 26 14:10:19 2017

*** 287,311 **** --- 287,311 ---- return Flag::SUCCESS; } Flag::Error ArraycopyDstPrefetchDistanceConstraintFunc(uintx value, bool verbose) { ! if (value != 0) { ! if (value >= 4032) { CommandLineError::print(verbose, ! "ArraycopyDstPrefetchDistance (" UINTX_FORMAT ") must be 0\n", ! value); ! "between 0 and 4031\n", value); return Flag::VIOLATES_CONSTRAINT; } return Flag::SUCCESS; } Flag::Error ArraycopySrcPrefetchDistanceConstraintFunc(uintx value, bool verbose) { ! if (value != 0) { ! if (value >= 4032) { CommandLineError::print(verbose, ! "ArraycopySrcPrefetchDistance (" UINTX_FORMAT ") must be 0\n", ! value); ! "between 0 and 4031\n", value); return Flag::VIOLATES_CONSTRAINT; } return Flag::SUCCESS; }

src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File