< prev index next >

src/share/vm/classfile/classLoader.cpp

Print this page

        

@@ -1885,11 +1885,11 @@
 /**
  * Returns if the given method should be compiled when doing compile-the-world.
  *
  * TODO:  This should be a private method in a CompileTheWorld class.
  */
-static bool can_be_compiled(methodHandle m, int comp_level) {
+static bool can_be_compiled(const methodHandle& m, int comp_level) {
   assert(CompileTheWorld, "must be");
 
   // It's not valid to compile a native wrapper for MethodHandle methods
   // that take a MemberName appendix since the bytecode signature is not
   // correct.
< prev index next >