hotspot/src/share/vm/classfile/classFileParser.cpp
changeset 35495 e27da438fa13
parent 35492 c8c0273e6b91
parent 35232 76aed99c0ddd
child 35898 ddc274f0052f
--- a/hotspot/src/share/vm/classfile/classFileParser.cpp	Thu Jan 14 13:26:19 2016 +0100
+++ b/hotspot/src/share/vm/classfile/classFileParser.cpp	Thu Jan 14 17:36:29 2016 +0100
@@ -1970,12 +1970,12 @@
       if (!privileged)              break;  // only allow in privileged code
       return _method_CallerSensitive;
     }
-    case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_ForceInline_signature): {
+    case vmSymbols::VM_SYMBOL_ENUM_NAME(jdk_internal_vm_annotation_ForceInline_signature): {
       if (_location != _in_method)  break;  // only allow for methods
       if (!privileged)              break;  // only allow in privileged code
       return _method_ForceInline;
     }
-    case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_DontInline_signature): {
+    case vmSymbols::VM_SYMBOL_ENUM_NAME(jdk_internal_vm_annotation_DontInline_signature): {
       if (_location != _in_method)  break;  // only allow for methods
       if (!privileged)              break;  // only allow in privileged code
       return _method_DontInline;
@@ -2007,7 +2007,7 @@
       return _field_Stable;
     }
 #endif
-    case vmSymbols::VM_SYMBOL_ENUM_NAME(java_lang_invoke_Stable_signature): {
+    case vmSymbols::VM_SYMBOL_ENUM_NAME(jdk_internal_vm_annotation_Stable_signature): {
       if (_location != _in_field)   break;  // only allow for fields
       if (!privileged)              break;  // only allow in privileged code
       return _field_Stable;