hotspot/src/share/vm/c1/c1_InstructionPrinter.cpp
changeset 20709 034be898bf04
parent 20702 bbe0fcde6e13
child 24424 2658d7834c6e
--- a/hotspot/src/share/vm/c1/c1_InstructionPrinter.cpp	Fri Oct 11 19:51:31 2013 -0700
+++ b/hotspot/src/share/vm/c1/c1_InstructionPrinter.cpp	Sat Oct 12 12:12:59 2013 +0200
@@ -904,6 +904,12 @@
   output()->put(')');
 }
 
+void InstructionPrinter::do_ProfileReturnType(ProfileReturnType* x) {
+  output()->print("profile ret type ");
+  print_value(x->ret());
+  output()->print(" %s.%s", x->method()->holder()->name()->as_utf8(), x->method()->name()->as_utf8());
+  output()->put(')');
+}
 void InstructionPrinter::do_ProfileInvoke(ProfileInvoke* x) {
   output()->print("profile_invoke ");
   output()->print(" %s.%s", x->inlinee()->holder()->name()->as_utf8(), x->inlinee()->name()->as_utf8());