1 //===-- paritysi2_test.c - Test __paritysi2 -------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file tests __paritysi2 for the compiler_rt library.
12 //===----------------------------------------------------------------------===//
18 // Returns: 1 if number of bits is odd else returns 0
20 si_int
__paritysi2(si_int a
);
22 int naive_parity(si_int a
)
25 for (; a
; a
= a
& (a
- 1))
30 int test__paritysi2(si_int a
)
32 si_int x
= __paritysi2(a
);
33 si_int expected
= naive_parity(a
);
35 printf("error in __paritysi2(0x%X) = %d, expected %d\n",
40 char assumption_2
[sizeof(si_int
)*CHAR_BIT
== 32] = {0};
45 for (i
= 0; i
< 10000; ++i
)
46 if (test__paritysi2(rand()))