]> gcc.gnu.org Git - gcc.git/commitdiff
m68k.c (m68k_output_function_prologue): Remove obsolete comments.
authorGunther Nikl <gni@gecko.de>
Tue, 21 Oct 2003 01:48:28 +0000 (01:48 +0000)
committerBernardo Innocenti <bernie@gcc.gnu.org>
Tue, 21 Oct 2003 01:48:28 +0000 (03:48 +0200)
* config/m68k/m68k.c (m68k_output_function_prologue): Remove
obsolete comments.

From-SVN: r72735

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

index 56ba7dd6fbe3a10e8fe00ffe598eedc01d8345c7..5c3e70b829709315497cef8719b44a8bdc088888 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 1b9014cdd6c60be9b745ba53c787409fd7971816..55949a3dfa5bbd4239f7e4f13a71bc5fb4a75c07 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
This page took 0.074804 seconds and 5 git commands to generate.