xref: /llvm-project/libc/test/src/math/smoke/canonicalizel_test.cpp (revision 19ca79e8671439338b429982c457304c70eca701)
1*19ca79e8SShourya Goel //===-- Unittests for canonicalizel ---------------------------------------===//
2*19ca79e8SShourya Goel //
3*19ca79e8SShourya Goel // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*19ca79e8SShourya Goel // See https://llvm.org/LICENSE.txt for license information.
5*19ca79e8SShourya Goel // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*19ca79e8SShourya Goel //
7*19ca79e8SShourya Goel //===----------------------------------------------------------------------===//
8*19ca79e8SShourya Goel 
9*19ca79e8SShourya Goel #include "CanonicalizeTest.h"
10*19ca79e8SShourya Goel 
11*19ca79e8SShourya Goel #include "src/math/canonicalizel.h"
12*19ca79e8SShourya Goel 
13*19ca79e8SShourya Goel LIST_CANONICALIZE_TESTS(long double, LIBC_NAMESPACE::canonicalizel)
14*19ca79e8SShourya Goel 
15*19ca79e8SShourya Goel #ifdef LIBC_TYPES_LONG_DOUBLE_IS_X86_FLOAT80
16*19ca79e8SShourya Goel 
17*19ca79e8SShourya Goel X86_80_SPECIAL_CANONICALIZE_TEST(long double, LIBC_NAMESPACE::canonicalizel)
18*19ca79e8SShourya Goel 
19*19ca79e8SShourya Goel #endif // LIBC_TYPES_LONG_DOUBLE_IS_X86_FLOAT80
20