hotspot/src/share/vm/runtime/globals.cpp
changeset 9116 9bc44be338d6
parent 7397 5b173b4ca846
child 11166 6e4cf5951f3c
--- a/hotspot/src/share/vm/runtime/globals.cpp	Wed Apr 06 17:32:09 2011 -0700
+++ b/hotspot/src/share/vm/runtime/globals.cpp	Thu Apr 07 17:02:30 2011 -0700
@@ -63,6 +63,12 @@
 
 bool Flag::is_unlocked() const {
   if (strcmp(kind, "{diagnostic}") == 0) {
+    if (strcmp(name, "EnableInvokeDynamic") == 0 && UnlockExperimentalVMOptions && !UnlockDiagnosticVMOptions) {
+      // transitional logic to allow tests to run until they are changed
+      static int warned;
+      if (++warned == 1)  warning("Use -XX:+UnlockDiagnosticVMOptions before EnableInvokeDynamic flag");
+      return true;
+    }
     return UnlockDiagnosticVMOptions;
   } else if (strcmp(kind, "{experimental}") == 0 ||
              strcmp(kind, "{C2 experimental}") == 0) {