src/hotspot/share/ci/ciMethod.cpp
changeset 50113 caf115bb98ad
parent 49449 ef5d5d343e2a
child 51333 f6641fcf7b7e
--- a/src/hotspot/share/ci/ciMethod.cpp	Tue May 15 11:28:29 2018 -0700
+++ b/src/hotspot/share/ci/ciMethod.cpp	Tue May 15 20:24:34 2018 +0200
@@ -48,7 +48,6 @@
 #include "runtime/deoptimization.hpp"
 #include "utilities/bitMap.inline.hpp"
 #include "utilities/xmlstream.hpp"
-#include "trace/tracing.hpp"
 #ifdef COMPILER2
 #include "ci/bcEscapeAnalyzer.hpp"
 #include "ci/ciTypeFlow.hpp"
@@ -1495,13 +1494,3 @@
 }
 
 // ------------------------------------------------------------------
-
-#if INCLUDE_TRACE
-TraceStructCalleeMethod ciMethod::to_trace_struct() const {
-  TraceStructCalleeMethod result;
-  result.set_type(holder()->name()->as_utf8());
-  result.set_name(name()->as_utf8());
-  result.set_descriptor(signature()->as_symbol()->as_utf8());
-  return result;
-}
-#endif