comparison src/share/vm/prims/jvmtiClassFileReconstituter.cpp @ 6976:8aaef2cee3b2

Merge
author minqi
date Thu, 08 Nov 2012 16:48:01 -0800
parents 64812523d72e 18fb7da42534
children c456f4510385
comparison
equal deleted inserted replaced
6975:64812523d72e 6976:8aaef2cee3b2
751 751
752 BytecodeStream bs(mh); 752 BytecodeStream bs(mh);
753 753
754 unsigned char* p = bytecodes; 754 unsigned char* p = bytecodes;
755 Bytecodes::Code code; 755 Bytecodes::Code code;
756 bool is_rewritten = InstanceKlass::cast(mh->method_holder())->is_rewritten(); 756 bool is_rewritten = mh->method_holder()->is_rewritten();
757 757
758 while ((code = bs.next()) >= 0) { 758 while ((code = bs.next()) >= 0) {
759 assert(Bytecodes::is_java_code(code), "sanity check"); 759 assert(Bytecodes::is_java_code(code), "sanity check");
760 assert(code != Bytecodes::_breakpoint, "sanity check"); 760 assert(code != Bytecodes::_breakpoint, "sanity check");
761 761