blob: a1f47b1d931b331bfbbd85994621ab014e2f9c53 [file] [log] [blame]
Edward O'Callaghan37a6a452009-08-07 20:30:09 +00001/* ===-- parityti2.c - Implement __parityti2 -------------------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
Howard Hinnant9ad441f2010-11-16 22:13:33 +00005 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
Edward O'Callaghan37a6a452009-08-07 20:30:09 +00007 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __parityti2 for the compiler_rt library.
11 *
12 * ===----------------------------------------------------------------------===
13 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000014
Daniel Dunbarb3a69012009-06-26 16:47:03 +000015#include "int_lib.h"
16
Chandler Carruth7f2d7c72012-06-22 21:09:22 +000017#if __x86_64
18
Edward O'Callaghan37a6a452009-08-07 20:30:09 +000019/* Returns: 1 if number of bits is odd else returns 0 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000020
21si_int __paritydi2(di_int a);
22
23si_int
24__parityti2(ti_int a)
25{
26 twords x;
27 x.all = a;
Edward O'Callaghanaabd9612009-09-03 09:12:20 +000028 return __paritydi2(x.s.high ^ x.s.low);
Daniel Dunbarb3a69012009-06-26 16:47:03 +000029}
30
31#endif