hotspot/src/share/vm/runtime/sharedRuntime.cpp
changeset 13396 1b2b5f740ee0
parent 13391 30245956af37
child 13728 882756847a04
--- a/hotspot/src/share/vm/runtime/sharedRuntime.cpp	Wed Aug 01 14:44:26 2012 -0700
+++ b/hotspot/src/share/vm/runtime/sharedRuntime.cpp	Tue Aug 07 14:32:08 2012 -0700
@@ -874,11 +874,20 @@
 }
 JNI_END
 
+JNI_ENTRY(void, throw_unsupported_operation_exception(JNIEnv* env, ...))
+{
+  THROW(vmSymbols::java_lang_UnsupportedOperationException());
+}
+JNI_END
 
 address SharedRuntime::native_method_throw_unsatisfied_link_error_entry() {
   return CAST_FROM_FN_PTR(address, &throw_unsatisfied_link_error);
 }
 
+address SharedRuntime::native_method_throw_unsupported_operation_exception_entry() {
+  return CAST_FROM_FN_PTR(address, &throw_unsupported_operation_exception);
+}
+
 
 #ifndef PRODUCT
 JRT_ENTRY(intptr_t, SharedRuntime::trace_bytecode(JavaThread* thread, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2))