hotspot/src/share/vm/utilities/constantTag.hpp
changeset 9116 9bc44be338d6
parent 7436 dbc43da3d512
child 13728 882756847a04
--- a/hotspot/src/share/vm/utilities/constantTag.hpp	Wed Apr 06 17:32:09 2011 -0700
+++ b/hotspot/src/share/vm/utilities/constantTag.hpp	Thu Apr 07 17:02:30 2011 -0700
@@ -86,8 +86,7 @@
 
   bool is_method_type() const              { return _tag == JVM_CONSTANT_MethodType; }
   bool is_method_handle() const            { return _tag == JVM_CONSTANT_MethodHandle; }
-  bool is_invoke_dynamic() const           { return (_tag == JVM_CONSTANT_InvokeDynamic ||
-                                                     _tag == JVM_CONSTANT_InvokeDynamicTrans); }
+  bool is_invoke_dynamic() const           { return _tag == JVM_CONSTANT_InvokeDynamic; }
 
   bool is_loadable_constant() const {
     return ((_tag >= JVM_CONSTANT_Integer && _tag <= JVM_CONSTANT_String) ||