mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
8054174: minor buglet in computation of end of pc descs in libjvm_db.c
Fixed scopes_pcs_end calculation Reviewed-by: sspitsyn, sla
This commit is contained in:
parent
e7bc11f7b1
commit
98b5d14523
4 changed files with 4 additions and 2 deletions
|
@ -595,7 +595,7 @@ static int nmethod_info(Nmethod_t *N)
|
|||
/* scopes_pcs */
|
||||
err = ps_pread(J->P, nm + OFFSET_nmethod_scopes_pcs_offset, &N->scopes_pcs_beg, SZ32);
|
||||
CHECK_FAIL(err);
|
||||
err = ps_pread(J->P, nm + OFFSET_nmethod_handler_table_offset, &N->scopes_pcs_end, SZ32);
|
||||
err = ps_pread(J->P, nm + OFFSET_nmethod_dependencies_offset, &N->scopes_pcs_end, SZ32);
|
||||
CHECK_FAIL(err);
|
||||
|
||||
/* scopes_data */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue