Fix typo in previous delta

From-SVN: r28210
This commit is contained in:
Nick Clifton 1999-07-21 15:09:36 +00:00 committed by Nick Clifton
parent 0b094f655a
commit 9daca635ba
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
Wed Jul 21 16:00:32 1999 Nick Clifton <nickc@cygnus.com>
* config/arm/arm.h (INITIAL_ELIMINATION_OFFSET): Fix typo
introduced in previous delta.
Wed Jul 21 14:30:51 1999 Bernd Schmidt <bernds@cygnus.co.uk>
* c-lang.c (finish_file): Rename void_list_node to void_list_node_1

View File

@ -1287,8 +1287,8 @@ enum reg_class
(OFFSET) = 0; \
else if ((FROM) == FRAME_POINTER_REGNUM \
&& (TO) == STACK_POINTER_REGNUM) \
(OFFSET) = (current_function_outgoing_args_size \
+ NUM_INTS (get_frame_size ())); \
(OFFSET) = current_function_outgoing_args_size \
+ ((get_frame_size () + 3) & ~3); \
else \
{ \
int regno; \
@ -1317,7 +1317,7 @@ enum reg_class
&& (regs_ever_live[LR_REGNUM] || saved_hard_reg)) \
offset += 4; \
offset += current_function_outgoing_args_size; \
(OFFSET) = NUM_INTS (get_frame_size ()) + offset; \
(OFFSET) = ((get_frame_size () + 3) & ~3) + offset; \
} \
} \
}