hotspot/src/share/vm/ci/ciMethod.cpp
changeset 4581 e89fbd1bcb3d
parent 4566 b363f6ef4068
child 4754 8aef16f24e16
--- a/hotspot/src/share/vm/ci/ciMethod.cpp	Thu Jan 07 16:26:31 2010 -0800
+++ b/hotspot/src/share/vm/ci/ciMethod.cpp	Fri Jan 08 11:09:46 2010 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright 1999-2009 Sun Microsystems, Inc.  All Rights Reserved.
+ * Copyright 1999-2010 Sun Microsystems, Inc.  All Rights Reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -700,6 +700,12 @@
   return flag;
 }
 
+bool ciMethod::is_method_handle_adapter() const {
+  check_is_loaded();
+  VM_ENTRY_MARK;
+  return get_methodOop()->is_method_handle_adapter();
+}
+
 ciInstance* ciMethod::method_handle_type() {
   check_is_loaded();
   VM_ENTRY_MARK;