Avoid add.w and sub.w if TARGET_5200

From-SVN: r12532
This commit is contained in:
Ian Lance Taylor 1996-07-19 19:56:44 +00:00
parent 80e4a749b7
commit 4431168e14
1 changed files with 2 additions and 2 deletions

View 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