comparison src/share/vm/asm/codeBuffer.cpp @ 100:c7c777385a15

6667042: PrintAssembly option does not work without special plugin Summary: remove old private plugin interface, simplify, rework old plugin to use unchanged Gnu sources Reviewed-by: kvn, rasbold
author jrose
date Wed, 02 Apr 2008 12:09:59 -0700
parents a61af66fc99e
children ba764ed4b6f2
comparison
equal deleted inserted replaced
99:8a4ef4e001d3 100:c7c777385a15
945 945
946 void CodeComments::print_block_comment(outputStream* stream, intptr_t offset) { 946 void CodeComments::print_block_comment(outputStream* stream, intptr_t offset) {
947 if (_comments != NULL) { 947 if (_comments != NULL) {
948 CodeComment* c = _comments->find(offset); 948 CodeComment* c = _comments->find(offset);
949 while (c && c->offset() == offset) { 949 while (c && c->offset() == offset) {
950 stream->bol();
950 stream->print(" ;; "); 951 stream->print(" ;; ");
951 stream->print_cr(c->comment()); 952 stream->print_cr(c->comment());
952 c = c->next(); 953 c = c->next();
953 } 954 }
954 } 955 }