comparison src/share/vm/ci/ciTypeFlow.cpp @ 2398:322a41ec766c

7025708: Assertion if using "-XX:+CITraceTypeFlow -XX:+Verbose" together Reviewed-by: never Contributed-by: volker.simonis@gmail.com
author never
date Fri, 25 Mar 2011 11:29:30 -0700
parents 8012aa3ccede
children e9a5e0a812c8
comparison
equal deleted inserted replaced
2396:b868d9928221 2398:322a41ec766c
1869 } 1869 }
1870 1870
1871 // ------------------------------------------------------------------ 1871 // ------------------------------------------------------------------
1872 // ciTypeFlow::Block::print_on 1872 // ciTypeFlow::Block::print_on
1873 void ciTypeFlow::Block::print_on(outputStream* st) const { 1873 void ciTypeFlow::Block::print_on(outputStream* st) const {
1874 if ((Verbose || WizardMode)) { 1874 if ((Verbose || WizardMode) && (limit() >= 0)) {
1875 // Don't print 'dummy' blocks (i.e. blocks with limit() '-1')
1875 outer()->method()->print_codes_on(start(), limit(), st); 1876 outer()->method()->print_codes_on(start(), limit(), st);
1876 } 1877 }
1877 st->print_cr(" ==================================================== "); 1878 st->print_cr(" ==================================================== ");
1878 st->print (" "); 1879 st->print (" ");
1879 print_value_on(st); 1880 print_value_on(st);