Commit a5d54cc5 by Richard Kenner

(standard_68881_constant_p): Return 0 if NO_ASM_FMOVECR defined.

From-SVN: r6928
parent ffc991ac
...@@ -1492,6 +1492,10 @@ standard_68881_constant_p (x) ...@@ -1492,6 +1492,10 @@ standard_68881_constant_p (x)
int i; int i;
enum machine_mode mode; enum machine_mode mode;
#ifdef NO_ASM_FMOVECR
return 0;
#endif
/* fmovecr must be emulated on the 68040, so it shouldn't be used at all. */ /* fmovecr must be emulated on the 68040, so it shouldn't be used at all. */
if (TARGET_68040) if (TARGET_68040)
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment