1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_comparetf2
3 //===------------ unordtf2_test.c - Test __unordtf2------------------------===//
5 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
6 // See https://llvm.org/LICENSE.txt for license information.
7 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9 //===----------------------------------------------------------------------===//
11 // This file tests __unordtf2 for the compiler_rt library.
13 //===----------------------------------------------------------------------===//
17 #if __LP64__ && __LDBL_MANT_DIG__ == 113
21 int __unordtf2(long double a
, long double b
);
23 int test__unordtf2(long double a
, long double b
, enum EXPECTED_RESULT expected
)
25 int x
= __unordtf2(a
, b
);
26 int ret
= compareResultCMP(x
, expected
);
29 printf("error in test__unordtf2(%.20Lf, %.20Lf) = %d, "
30 "expected %s\n", a
, b
, x
, expectedStr(expected
));
35 char assumption_1
[sizeof(long double) * CHAR_BIT
== 128] = {0};
41 #if __LP64__ && __LDBL_MANT_DIG__ == 113
43 if (test__unordtf2(makeQNaN128(),
44 0x1.234567890abcdef1234567890abcp
+3L,
48 if (test__unordtf2(0x1.234567890abcdef1234567890abcp
+3L,
49 0x1.334567890abcdef1234567890abcp
+3L,
52 if (test__unordtf2(0x1.234567890abcdef1234567890abcp
+3L,
53 0x1.234567890abcdef1234567890abcp
+3L,
56 if (test__unordtf2(0x1.234567890abcdef1234567890abcp
+3L,
57 0x1.234567890abcdef1234567890abcp
-3L,