mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-19 01:50:34 +08:00
arm.c (thumb_output_function_prologue): Calculate offset in bytes, not words.
2005-07-07 Khem Raj <kraj@mvista.com> * config/arm/arm.c (thumb_output_function_prologue): Calculate offset in bytes, not words. From-SVN: r101740
This commit is contained in:
parent
efd4dc1a15
commit
1a59548be6
@ -1,3 +1,8 @@
|
||||
2005-07-07 Khem Raj <kraj@mvista.com>
|
||||
|
||||
* config/arm/arm.c (thumb_output_function_prologue): Calculate offset
|
||||
in bytes, not words.
|
||||
|
||||
2005-07-07 Paul Brook <paul@codesourcery.com>
|
||||
|
||||
* config/arm/arm.c (arm_pad_arg_upward): Compare return value of
|
||||
|
@ -13491,7 +13491,7 @@ thumb_output_function_prologue (FILE *f, HOST_WIDE_INT size ATTRIBUTE_UNUSED)
|
||||
if (l_mask)
|
||||
{
|
||||
thumb_pushpop (f, l_mask, 1, &cfa_offset, l_mask);
|
||||
offset = bit_count (l_mask);
|
||||
offset = bit_count (l_mask) * UNITS_PER_WORD;
|
||||
}
|
||||
else
|
||||
offset = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user