1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2025-03-08 09:50:07 +01:00

(access_nat): rotate_gr() expects a register number in the range r32-r127.

(Logical change 1.41)
This commit is contained in:
mostang.com!davidm 2003-01-23 10:04:09 +00:00
parent 51b47e4ecf
commit a356356660

View file

@ -195,7 +195,7 @@ access_nat (struct cursor *c, unw_word_t loc, unw_word_t reg_loc,
else if (reg >= 32)
{
/* NaT bit is saved in a stacked register. */
reg = rotate_gr (c, reg - 32);
reg = rotate_gr (c, reg);
ret = ia64_get_stacked (c, reg, &reg_loc, &nat_loc);
if (ret < 0)
return ret;