hotspot/src/share/vm/c1/c1_GraphBuilder.cpp
changeset 20073 bfc95277d42b
parent 19715 a3f8b34430ef
child 20702 bbe0fcde6e13
equal deleted inserted replaced
20072:6da61000acff 20073:bfc95277d42b
  4217       else
  4217       else
  4218         log->inline_fail("reason unknown");
  4218         log->inline_fail("reason unknown");
  4219     }
  4219     }
  4220   }
  4220   }
  4221 
  4221 
  4222   if (!PrintInlining)  return;
  4222   if (!PrintInlining && !compilation()->method()->has_option("PrintInlining")) {
       
  4223     return;
       
  4224   }
  4223   CompileTask::print_inlining(callee, scope()->level(), bci(), msg);
  4225   CompileTask::print_inlining(callee, scope()->level(), bci(), msg);
  4224   if (success && CIPrintMethodCodes) {
  4226   if (success && CIPrintMethodCodes) {
  4225     callee->print_codes();
  4227     callee->print_codes();
  4226   }
  4228   }
  4227 }
  4229 }