hotspot/src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp
changeset 45806 36707109c109
parent 45804 41b19cb98a96
child 46735 219c4312853e
--- a/hotspot/src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp	Thu Jul 06 20:29:02 2017 +0000
+++ b/hotspot/src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp	Mon Jul 10 14:28:40 2017 -0700
@@ -332,17 +332,6 @@
   }
 }
 
-Flag::Error UseAVXConstraintFunc(intx value, bool verbose) {
-  if (value > 2 && !UnlockExperimentalVMOptions) {
-    CommandLineError::print(verbose,
-                            "UseAVX (" UINTX_FORMAT ") is experimental and must be "
-                            "enabled via -XX:+UnlockExperimentalVMOptions \n", value);
-    return Flag::VIOLATES_CONSTRAINT;
-  } else {
-    return Flag::SUCCESS;
-  }
-}
-
 #ifdef COMPILER2
 Flag::Error InteriorEntryAlignmentConstraintFunc(intx value, bool verbose) {
   if (InteriorEntryAlignment > CodeEntryAlignment) {