Skip to content

Commit 8c147f9

Browse files
joy2myselfcopybara-github
authored andcommitted
[libcxx] <experimental/simd> excluded long double for 32-bits x86 temporarily
Reviewed By: #libc, philnik Differential Revision: https://reviews.llvm.org/D159514 NOKEYCHECK=True GitOrigin-RevId: 81a3828dbd992aaf03cb6080abace8114ba40f8e
1 parent 6454700 commit 8c147f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/std/experimental/simd/test_utils.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ struct TestAllSimdAbiFunctor {
4040
}
4141
};
4242

43-
// TODO: Support long double (12 bytes) for MinGW (DLL, i686)
44-
#ifdef __MINGW32__
43+
// TODO: Support long double (12 bytes) for 32-bits x86
44+
#ifdef __i386__
4545
using arithmetic_no_bool_types = types::concatenate_t<types::integer_types, types::type_list<float, double>>;
4646
#else
4747
using arithmetic_no_bool_types = types::concatenate_t<types::integer_types, types::floating_point_types>;

0 commit comments

Comments
 (0)