8009836: nsk/regression/b4222717 fails with empty stack trace

Some zeroing was missed for bug 8003553, causing empty stack traces and Xcom crashes, add back zeroing to metablock

Reviewed-by: dholmes, rbackman
This commit is contained in:
Coleen Phillimore 2013-03-13 09:10:35 -04:00
parent fc336457e7
commit 70b26044ba
3 changed files with 8 additions and 3 deletions

View file

@ -87,6 +87,9 @@ Method::Method(ConstMethod* xconst, AccessFlags access_flags, int size) {
#endif
set_intrinsic_id(vmIntrinsics::_none);
set_jfr_towrite(false);
set_force_inline(false);
set_hidden(false);
set_dont_inline(false);
set_method_data(NULL);
set_interpreter_throwout_count(0);
set_vtable_index(Method::garbage_vtable_index);