From: Gunther Nikl Date: Tue, 21 Oct 2003 01:48:28 +0000 (+0000) Subject: m68k.c (m68k_output_function_prologue): Remove obsolete comments. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=802f1b93d00625af6ac4f16d24691e3d8bdfb3e7;p=gcc.git m68k.c (m68k_output_function_prologue): Remove obsolete comments. * config/m68k/m68k.c (m68k_output_function_prologue): Remove obsolete comments. From-SVN: r72735 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 56ba7dd6fbe..5c3e70b8297 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-10-21 Gunther Nikl + + * config/m68k/m68k.c (m68k_output_function_prologue): Remove + obsolete comments. + 2003-10-20 Kelley Cook * Makefile.in: Get parsedir and docobjdir from configure. diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index 1b9014cdd6c..55949a3dfa5 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -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