comparison src/share/vm/ci/ciTypeFlow.cpp @ 2491:0654ee04b214

Merge with OpenJDK.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 22 Apr 2011 15:30:53 +0200
parents 322a41ec766c
children e9a5e0a812c8
comparison
equal deleted inserted replaced
2490:29246b1d2d3c 2491:0654ee04b214
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);