Commit 60f4621c by Andrew Haley Committed by Andrew Haley

calls.c (check_sibcall_argument_overlap): Use slot_offset for start of stack slot.

2001-10-09  Andrew Haley  <aph@redhat.com>

        * calls.c (check_sibcall_argument_overlap): Use slot_offset for
        start of stack slot.

From-SVN: r47276
parent 57a1142a
2001-10-09 Andrew Haley <aph@redhat.com>
* calls.c (check_sibcall_argument_overlap): Use slot_offset for
start of stack slot.
2001-11-22 Graham Stott <grahams@redhat.com> 2001-11-22 Graham Stott <grahams@redhat.com>
* cfgrtl.c (try_redirect_by_replacing_jump): Fix typo, emit * cfgrtl.c (try_redirect_by_replacing_jump): Fix typo, emit
......
...@@ -2035,9 +2035,9 @@ check_sibcall_argument_overlap (insn, arg) ...@@ -2035,9 +2035,9 @@ check_sibcall_argument_overlap (insn, arg)
break; break;
#ifdef ARGS_GROW_DOWNWARD #ifdef ARGS_GROW_DOWNWARD
low = -arg->offset.constant - arg->size.constant; low = -arg->slot_offset.constant - arg->size.constant;
#else #else
low = arg->offset.constant; low = arg->slot_offset.constant;
#endif #endif
for (high = low + arg->size.constant; low < high; low++) for (high = low + arg->size.constant; low < high; low++)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment