1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_parityti2
4 //===-- parityti2_test.c - Test __parityti2 -------------------------------===//
6 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
7 // See https://llvm.org/LICENSE.txt for license information.
8 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
10 //===----------------------------------------------------------------------===//
12 // This file tests __parityti2 for the compiler_rt library.
14 //===----------------------------------------------------------------------===//
22 // Returns: 1 if number of bits is odd else returns 0
24 COMPILER_RT_ABI si_int
__parityti2(ti_int a
);
26 int naive_parity(ti_int a
)
29 for (; a
; a
= a
& (a
- 1))
34 int test__parityti2(ti_int a
)
36 si_int x
= __parityti2(a
);
37 si_int expected
= naive_parity(a
);
42 printf("error in __parityti2(0x%.16llX%.16llX) = %d, expected %d\n",
43 at
.s
.high
, at
.s
.low
, x
, expected
);
48 char assumption_1
[sizeof(ti_int
) == 2*sizeof(di_int
)] = {0};
49 char assumption_2
[sizeof(di_int
)*CHAR_BIT
== 64] = {0};
57 for (i
= 0; i
< 10000; ++i
)
58 if (test__parityti2(((ti_int
)rand() << 96) + ((ti_int
)rand() << 64) +
59 ((ti_int
)rand() << 32) + rand()))