mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-22 23:47:39 +01:00
(run_script): Remove erroneous calls to rotate_gr(). The unwind
directives specify physical stacked register numbers and the register-backing store always represents physical registers, so it was wrong to rotate here. (Logical change 1.184)
This commit is contained in:
parent
18d33f37d5
commit
eed0c54d28
1 changed files with 0 additions and 2 deletions
|
@ -552,7 +552,6 @@ run_script (struct ia64_script *script, struct cursor *c)
|
|||
/* This is by far the most common operation: */
|
||||
if (likely (opc == IA64_INSN_MOVE_STACKED))
|
||||
{
|
||||
val = rotate_gr (c, val);
|
||||
if ((ret = ia64_get_stacked (c, val, &loc, NULL)) < 0)
|
||||
return ret;
|
||||
}
|
||||
|
@ -612,7 +611,6 @@ run_script (struct ia64_script *script, struct cursor *c)
|
|||
break;
|
||||
|
||||
case IA64_INSN_MOVE_STACKED_NAT:
|
||||
val = rotate_gr (c, val);
|
||||
if ((ret = ia64_get_stacked (c, val, &loc, &nat_loc)) < 0)
|
||||
return ret;
|
||||
assert (!IA64_IS_REG_LOC (loc));
|
||||
|
|
Loading…
Reference in a new issue