diff --git a/clang/lib/Basic/Targets/X86.cpp b/clang/lib/Basic/Targets/X86.cpp --- a/clang/lib/Basic/Targets/X86.cpp +++ b/clang/lib/Basic/Targets/X86.cpp @@ -382,12 +382,10 @@ SimdDefaultAlign = hasFeature("avx512f") ? 512 : hasFeature("avx") ? 256 : 128; - if (!HasX87) { - if (LongDoubleFormat == &llvm::APFloat::x87DoubleExtended()) - HasLongDouble = false; - if (getTriple().getArch() == llvm::Triple::x86) - HasFPReturn = false; - } + // FIXME: We should allow long double type on 32-bits to match with GCC. + // This requires backend to be able to lower f80 without x87 first. + if (!HasX87 && LongDoubleFormat == &llvm::APFloat::x87DoubleExtended()) + HasLongDouble = false; return true; } diff --git a/clang/test/Sema/x86-no-x87.cpp b/clang/test/Sema/x86-no-x87.cpp --- a/clang/test/Sema/x86-no-x87.cpp +++ b/clang/test/Sema/x86-no-x87.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s -triple i686-linux-gnu -target-feature -x87 -DRET_ERROR +// RUN: %clang_cc1 -fsyntax-only -verify %s -triple i686-linux-gnu -target-feature -x87 // RUN: %clang_cc1 -fsyntax-only -verify %s -triple i686-linux-gnu -DNOERROR #ifdef NOERROR @@ -123,42 +123,22 @@ long_double ld = 0.42; } -#ifndef NOERROR -// expected-note@+3{{'d_ret1' defined here}} -// expected-error@+2{{'d_ret1' requires 'double' return type support, but target 'i686-unknown-linux-gnu' does not support it}} -#endif double d_ret1(float x) { return 0.0; } -#ifndef NOERROR -// expected-note@+2{{'d_ret2' defined here}} -#endif double d_ret2(float x); int d_ret3(float x) { -#ifndef NOERROR - // expected-error@+2{{'d_ret2' requires 'double' return type support, but target 'i686-unknown-linux-gnu' does not support it}} -#endif return (int)d_ret2(x); } -#ifndef NOERROR -// expected-note@+3{{'f_ret1' defined here}} -// expected-error@+2{{'f_ret1' requires 'float' return type support, but target 'i686-unknown-linux-gnu' does not support it}} -#endif float f_ret1(float x) { return 0.0f; } -#ifndef NOERROR -// expected-note@+2{{'f_ret2' defined here}} -#endif float f_ret2(float x); int f_ret3(float x) { -#ifndef NOERROR - // expected-error@+2{{'f_ret2' requires 'float' return type support, but target 'i686-unknown-linux-gnu' does not support it}} -#endif return (int)f_ret2(x); }