hotspot/src/share/vm/ci/ciMethod.cpp
changeset 40664 1ec65b303bb7
parent 39219 1b33aa56ed18
child 43947 a52ee13998f3
child 46326 70de7011f79a
--- a/hotspot/src/share/vm/ci/ciMethod.cpp	Mon Aug 22 15:54:22 2016 +0000
+++ b/hotspot/src/share/vm/ci/ciMethod.cpp	Tue Aug 23 19:21:48 2016 +0200
@@ -1410,11 +1410,11 @@
 }
 
 #if INCLUDE_TRACE
-TraceStructCiMethod ciMethod::to_trace_struct() const {
-  TraceStructCiMethod result;
-  result.set_class(holder()->name()->as_utf8());
+TraceStructCalleeMethod ciMethod::to_trace_struct() const {
+  TraceStructCalleeMethod result;
+  result.set_type(holder()->name()->as_utf8());
   result.set_name(name()->as_utf8());
-  result.set_signature(signature()->as_symbol()->as_utf8());
+  result.set_descriptor(signature()->as_symbol()->as_utf8());
   return result;
 }
 #endif