1 //===-- Unittests for iscanonical macro -----------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
8 int iscanonical(double);
9 int iscanonicalf(float);
10 int iscanonicall(long double);
12 #include "include/llvm-libc-macros/math-function-macros.h"
16 // check if macro is defined
18 #error "iscanonical macro is not defined"
21 assert(iscanonical(__builtin_nans("")) == 0);
22 assert(iscanonical(__builtin_nansf("")) == 0);
23 assert(iscanonical(__builtin_nansl("")) == 0);
24 assert(iscanonical(1.819f
) == 1);
25 assert(iscanonical(-1.726) == 1);
26 assert(iscanonical(1.426L) == 1);