src/share/vm/c1/c1_GraphBuilder.cpp

changeset 5763
1b64d46620a3
parent 5633
59982ff9e0ec
child 5914
d13d7aba8c12
     1.1 --- a/src/share/vm/c1/c1_GraphBuilder.cpp	Tue Sep 24 15:56:25 2013 +0200
     1.2 +++ b/src/share/vm/c1/c1_GraphBuilder.cpp	Tue Sep 24 16:08:00 2013 -0700
     1.3 @@ -4219,7 +4219,9 @@
     1.4      }
     1.5    }
     1.6  
     1.7 -  if (!PrintInlining)  return;
     1.8 +  if (!PrintInlining && !compilation()->method()->has_option("PrintInlining")) {
     1.9 +    return;
    1.10 +  }
    1.11    CompileTask::print_inlining(callee, scope()->level(), bci(), msg);
    1.12    if (success && CIPrintMethodCodes) {
    1.13      callee->print_codes();

mercurial