diff src/share/vm/classfile/defaultMethods.cpp @ 7462:ade95d680b42

8004728: Add hotspot support for parameter reflection Summary: Add hotspot support for parameter reflection Reviewed-by: acorn, jrose, coleenp Contributed-by: eric.mccorkle@oracle.com
author coleenp
date Tue, 08 Jan 2013 14:01:36 -0500
parents b2dbd323c668
children 2dce7c34c564
line wrap: on
line diff
--- a/src/share/vm/classfile/defaultMethods.cpp	Mon Jan 07 15:32:51 2013 -0500
+++ b/src/share/vm/classfile/defaultMethods.cpp	Tue Jan 08 14:01:36 2013 -0500
@@ -1148,7 +1148,8 @@
   int code_length = bytecodes->length();
 
   Method* m = Method::allocate(cp->pool_holder()->class_loader_data(),
-      code_length, flags, 0, 0, 0, 0, 0, mt, CHECK_NULL);
+                               code_length, flags, 0, 0, 0, 0, 0, 0,
+                               mt, CHECK_NULL);
 
   m->set_constants(NULL); // This will get filled in later
   m->set_name_index(cp->utf8(name));