diff options
Diffstat (limited to 'gcc/tree-call-cdce.c')
-rw-r--r-- | gcc/tree-call-cdce.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/tree-call-cdce.c b/gcc/tree-call-cdce.c index da66138..301fe25 100644 --- a/gcc/tree-call-cdce.c +++ b/gcc/tree-call-cdce.c @@ -141,9 +141,11 @@ check_target_format (tree arg) mode = TYPE_MODE (type); rfmt = REAL_MODE_FORMAT (mode); if ((mode == SFmode - && (rfmt == &ieee_single_format || rfmt == &mips_single_format)) + && (rfmt == &ieee_single_format || rfmt == &mips_single_format + || rfmt == &motorola_single_format)) || (mode == DFmode - && (rfmt == &ieee_double_format || rfmt == &mips_double_format)) + && (rfmt == &ieee_double_format || rfmt == &mips_double_format + || rfmt == &motorola_double_format)) /* For long double, we can not really check XFmode which is only defined on intel platforms. Candidate pre-selection using builtin function @@ -152,6 +154,7 @@ check_target_format (tree arg) || (mode != SFmode && mode != DFmode && (rfmt == &ieee_quad_format || rfmt == &mips_quad_format + || rfmt == &ieee_extended_motorola_format || rfmt == &ieee_extended_intel_96_format || rfmt == &ieee_extended_intel_128_format || rfmt == &ieee_extended_intel_96_round_53_format))) |