hotspot/src/share/vm/ci/ciMethod.cpp
changeset 28912 27fac2f8fdbe
parent 27644 f4aa22a934e4
child 29582 9a0bb63adf5a
--- a/hotspot/src/share/vm/ci/ciMethod.cpp	Wed Jan 28 07:55:27 2015 +0100
+++ b/hotspot/src/share/vm/ci/ciMethod.cpp	Thu Jan 29 10:25:59 2015 -0800
@@ -70,7 +70,8 @@
 // Loaded method.
 ciMethod::ciMethod(methodHandle h_m, ciInstanceKlass* holder) :
   ciMetadata(h_m()),
-  _holder(holder)
+  _holder(holder),
+  _has_injected_profile(false)
 {
   assert(h_m() != NULL, "no null method");
 
@@ -168,7 +169,8 @@
   _liveness(               NULL),
   _can_be_statically_bound(false),
   _method_blocks(          NULL),
-  _method_data(            NULL)
+  _method_data(            NULL),
+  _has_injected_profile(   false)
 #if defined(COMPILER2) || defined(SHARK)
   ,
   _flow(                   NULL),