Commit 9daca635 by Nick Clifton Committed by Nick Clifton

Fix typo in previous delta

From-SVN: r28210
parent 0b094f65
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
......
......@@ -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; \
} \
} \
}
......
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