OSDN Git Service

Avoid add.w and sub.w if TARGET_5200
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 19 Jul 1996 19:56:44 +0000 (19:56 +0000)
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 19 Jul 1996 19:56:44 +0000 (19:56 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12532 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/m68k/m68k.c

index 2e52479..11d3dda 100644 (file)
@@ -146,7 +146,7 @@ output_function_prologue (stream, size)
   else if (fsize)
     {
       /* Adding negative number is faster on the 68040.  */
-      if (fsize + 4 < 0x8000)
+      if (fsize + 4 < 0x8000 && ! TARGET_5200)
        {
        /* asm_fprintf() cannot handle %. */
 #ifdef MOTOROLA
@@ -524,7 +524,7 @@ output_function_epilogue (stream, size)
             reg_names[FRAME_POINTER_REGNUM]);
   else if (fsize)
     {
-      if (fsize + 4 < 0x8000)
+      if (fsize + 4 < 0x8000 && ! TARGET_5200)
        {
        /* asm_fprintf() cannot handle %. */
 #ifdef MOTOROLA