< prev index next >

src/share/vm/ci/ciMethod.cpp

Print this page
rev 8471 : [mq]: dont_profile.8074551

@@ -69,12 +69,11 @@
 // ciMethod::ciMethod
 //
 // Loaded method.
 ciMethod::ciMethod(methodHandle h_m, ciInstanceKlass* holder) :
   ciMetadata(h_m()),
-  _holder(holder),
-  _has_injected_profile(false)
+  _holder(holder)
 {
   assert(h_m() != NULL, "no null method");
 
   // These fields are always filled in in loaded methods.
   _flags = ciFlags(h_m()->access_flags());

@@ -168,12 +167,11 @@
   _holder(                 holder),
   _intrinsic_id(           vmIntrinsics::_none),
   _liveness(               NULL),
   _can_be_statically_bound(false),
   _method_blocks(          NULL),
-  _method_data(            NULL),
-  _has_injected_profile(   false)
+  _method_data(            NULL)
 #if defined(COMPILER2) || defined(SHARK)
   ,
   _flow(                   NULL),
   _bcea(                   NULL),
   _instructions_size(-1)
< prev index next >