src/hotspot/share/prims/jvm.cpp
changeset 48826 c4d9d1b08e2e
parent 48477 b7af6f568d00
child 49037 dc68aeea4840
equal deleted inserted replaced
48825:ef8a98bc71f8 48826:c4d9d1b08e2e
  2210       result = JVM_CONSTANT_String;
  2210       result = JVM_CONSTANT_String;
  2211   } else if (tag.is_method_type_in_error()) {
  2211   } else if (tag.is_method_type_in_error()) {
  2212       result = JVM_CONSTANT_MethodType;
  2212       result = JVM_CONSTANT_MethodType;
  2213   } else if (tag.is_method_handle_in_error()) {
  2213   } else if (tag.is_method_handle_in_error()) {
  2214       result = JVM_CONSTANT_MethodHandle;
  2214       result = JVM_CONSTANT_MethodHandle;
       
  2215   } else if (tag.is_dynamic_constant_in_error()) {
       
  2216       result = JVM_CONSTANT_Dynamic;
  2215   }
  2217   }
  2216   return result;
  2218   return result;
  2217 }
  2219 }
  2218 JVM_END
  2220 JVM_END
  2219 
  2221