src/hotspot/share/code/pcDesc.hpp
changeset 54960 e46fe26d7f77
parent 53244 9807daeb47c4
--- a/src/hotspot/share/code/pcDesc.hpp	Tue May 21 11:45:37 2019 +0200
+++ b/src/hotspot/share/code/pcDesc.hpp	Tue May 21 15:51:35 2019 +0200
@@ -92,7 +92,8 @@
   // Returns the real pc
   address real_pc(const CompiledMethod* code) const;
 
-  void print(CompiledMethod* code);
+  void print(CompiledMethod* code) { print_on(tty, code); }
+  void print_on(outputStream* st, CompiledMethod* code);
   bool verify(CompiledMethod* code);
 };