Commit 908c8c7e by Kazu Hirata Committed by Kazu Hirata

avr.c (avr_output_function_prologue): Remove an extra pair of curly braces.

	* config/avr/avr.c (avr_output_function_prologue): Remove an
	extra pair of curly braces.

From-SVN: r75434
parent 8596d0a1
2004-01-05 Kazu Hirata <kazu@cs.umass.edu> 2004-01-05 Kazu Hirata <kazu@cs.umass.edu>
* config/avr/avr.c (avr_output_function_prologue): Remove an
extra pair of curly braces.
2004-01-05 Kazu Hirata <kazu@cs.umass.edu>
* config/mn10300/mn10300.c: Fix comment formatting. * config/mn10300/mn10300.c: Fix comment formatting.
* config/mn10300/mn10300.h: Likewise. * config/mn10300/mn10300.h: Likewise.
......
...@@ -700,32 +700,30 @@ avr_output_function_prologue (FILE *file, HOST_WIDE_INT size) ...@@ -700,32 +700,30 @@ avr_output_function_prologue (FILE *file, HOST_WIDE_INT size)
} }
if (frame_pointer_needed) if (frame_pointer_needed)
{ {
{ fprintf (file, "\t"
fprintf (file, "\t" AS1 (push,r28) CR_TAB
AS1 (push,r28) CR_TAB AS1 (push,r29) CR_TAB
AS1 (push,r29) CR_TAB AS2 (in,r28,__SP_L__) CR_TAB
AS2 (in,r28,__SP_L__) CR_TAB AS2 (in,r29,__SP_H__) "\n");
AS2 (in,r29,__SP_H__) "\n"); prologue_size += 4;
prologue_size += 4; if (size)
if (size) {
{ fputs ("\t", file);
fputs ("\t", file); prologue_size += out_adj_frame_ptr (file, size);
prologue_size += out_adj_frame_ptr (file, size);
if (interrupt_func_p)
if (interrupt_func_p) {
{ prologue_size += out_set_stack_ptr (file, 1, 1);
prologue_size += out_set_stack_ptr (file, 1, 1); }
} else if (signal_func_p)
else if (signal_func_p) {
{ prologue_size += out_set_stack_ptr (file, 0, 0);
prologue_size += out_set_stack_ptr (file, 0, 0); }
} else
else {
{ prologue_size += out_set_stack_ptr (file, -1, -1);
prologue_size += out_set_stack_ptr (file, -1, -1); }
} }
}
}
} }
} }
......
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