OSDN Git Service

* config/avr/avr.c (avr_output_function_prologue): Remove an
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 5 Jan 2004 17:26:30 +0000 (17:26 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 5 Jan 2004 17:26:30 +0000 (17:26 +0000)
extra pair of curly braces.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75434 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/avr/avr.c

index 04e537b..439573d 100644 (file)
@@ -1,5 +1,10 @@
 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.h: Likewise.
 
index 216ec86..6ec10ba 100644 (file)
@@ -700,32 +700,30 @@ avr_output_function_prologue (FILE *file, HOST_WIDE_INT size)
        }
       if (frame_pointer_needed)
        {
-         {
-           fprintf (file, "\t"
-                    AS1 (push,r28) CR_TAB
-                    AS1 (push,r29) CR_TAB
-                    AS2 (in,r28,__SP_L__) CR_TAB
-                    AS2 (in,r29,__SP_H__) "\n");
-           prologue_size += 4;
-           if (size)
-             {
-               fputs ("\t", file);
-               prologue_size += out_adj_frame_ptr (file, size);
-
-               if (interrupt_func_p)
-                 {
-                   prologue_size += out_set_stack_ptr (file, 1, 1);
-                 }
-               else if (signal_func_p)
-                 {
-                   prologue_size += out_set_stack_ptr (file, 0, 0);
-                 }
-               else
-                 {
-                   prologue_size += out_set_stack_ptr (file, -1, -1);
-                 }
-             }
-         }
+         fprintf (file, "\t"
+                  AS1 (push,r28) CR_TAB
+                  AS1 (push,r29) CR_TAB
+                  AS2 (in,r28,__SP_L__) CR_TAB
+                  AS2 (in,r29,__SP_H__) "\n");
+         prologue_size += 4;
+         if (size)
+           {
+             fputs ("\t", file);
+             prologue_size += out_adj_frame_ptr (file, size);
+
+             if (interrupt_func_p)
+               {
+                 prologue_size += out_set_stack_ptr (file, 1, 1);
+               }
+             else if (signal_func_p)
+               {
+                 prologue_size += out_set_stack_ptr (file, 0, 0);
+               }
+             else
+               {
+                 prologue_size += out_set_stack_ptr (file, -1, -1);
+               }
+           }
        }
     }