comparison src/share/vm/classfile/stackMapFrame.hpp @ 8124:5fc51c1ecdeb

Merge.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 05 Mar 2013 23:44:54 +0100
parents ab826603e572
children f36e073d56a4
comparison
equal deleted inserted replaced
7943:a413bcd552a4 8124:5fc51c1ecdeb
176 176
177 inline void set_mark() { 177 inline void set_mark() {
178 #ifdef DEBUG 178 #ifdef DEBUG
179 // Put bogus type to indicate it's no longer valid. 179 // Put bogus type to indicate it's no longer valid.
180 if (_stack_mark != -1) { 180 if (_stack_mark != -1) {
181 for (int i = _stack_mark; i >= _stack_size; --i) { 181 for (int i = _stack_mark - 1; i >= _stack_size; --i) {
182 _stack[i] = VerificationType::bogus_type(); 182 _stack[i] = VerificationType::bogus_type();
183 } 183 }
184 } 184 }
185 #endif // def DEBUG 185 #endif // def DEBUG
186 _stack_mark = _stack_size; 186 _stack_mark = _stack_size;