blob: ba32b840315dd16377f11be3b834b4ba6baab30f [file] [log] [blame]
Edward O'Callaghan1fcb40b2009-08-05 19:06:50 +00001/* ===-- ucmpti2.c - Implement __ucmpti2 -----------------------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
5 * This file is distributed under the University of Illinois Open Source
6 * License. See LICENSE.TXT for details.
7 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __ucmpti2 for the compiler_rt library.
11 *
12 * ===----------------------------------------------------------------------===
13 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000014
15#if __x86_64
16
17#include "int_lib.h"
18
Edward O'Callaghan1fcb40b2009-08-05 19:06:50 +000019/* Returns: if (a < b) returns 0
20 * if (a == b) returns 1
21 * if (a > b) returns 2
22 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000023
24si_int
25__ucmpti2(tu_int a, tu_int b)
26{
27 utwords x;
28 x.all = a;
29 utwords y;
30 y.all = b;
31 if (x.high < y.high)
32 return 0;
33 if (x.high > y.high)
34 return 2;
35 if (x.low < y.low)
36 return 0;
37 if (x.low > y.low)
38 return 2;
39 return 1;
40}
41
42#endif