OSDN Git Service

* config/m68k/m68k.c (m68k_output_function_prologue): Remove
authorbernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 21 Oct 2003 01:48:28 +0000 (01:48 +0000)
committerbernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 21 Oct 2003 01:48:28 +0000 (01:48 +0000)
obsolete comments.

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

gcc/ChangeLog
gcc/config/m68k/m68k.c

index 56ba7dd..5c3e70b 100644 (file)
@@ -1,3 +1,8 @@
+2003-10-21  Gunther Nikl  <gni@gecko.de>
+
+       * config/m68k/m68k.c (m68k_output_function_prologue): Remove
+       obsolete comments.
+
 2003-10-20  Kelley Cook  <kcook@gcc.gnu.org>
 
        * Makefile.in: Get parsedir and docobjdir from configure.
index 1b9014c..55949a3 100644 (file)
@@ -548,7 +548,6 @@ m68k_output_function_prologue (FILE *stream, HOST_WIDE_INT size ATTRIBUTE_UNUSED
            {
              if (!TARGET_COLDFIRE)
                {
-                 /* asm_fprintf() cannot handle %.  */
 #ifdef MOTOROLA
                  asm_fprintf (stream, "\tsubq.w %I%wd,%Rsp\n", fsize_with_regs);
 #else
@@ -557,7 +556,6 @@ m68k_output_function_prologue (FILE *stream, HOST_WIDE_INT size ATTRIBUTE_UNUSED
                }
              else
                {
-                 /* asm_fprintf() cannot handle %.  */
 #ifdef MOTOROLA
                  asm_fprintf (stream, "\tsubq.l %I%wd,%Rsp\n", fsize_with_regs);
 #else
@@ -569,7 +567,6 @@ m68k_output_function_prologue (FILE *stream, HOST_WIDE_INT size ATTRIBUTE_UNUSED
            {
              /* On the CPU32 it is faster to use two subqw instructions to
                 subtract a small integer (8 < N <= 16) to a register.  */
-             /* asm_fprintf() cannot handle %.  */
 #ifdef MOTOROLA
              asm_fprintf (stream,
                           "\tsubq.w %I8,%Rsp\n\tsubq.w %I%wd,%Rsp\n",
@@ -582,7 +579,6 @@ m68k_output_function_prologue (FILE *stream, HOST_WIDE_INT size ATTRIBUTE_UNUSED
          else if (TARGET_68040)
            {
              /* Adding negative number is faster on the 68040.  */
-             /* asm_fprintf() cannot handle %.  */
 #ifdef MOTOROLA
              asm_fprintf (stream, "\tadd.w %I%wd,%Rsp\n", -fsize_with_regs);
 #else