1 //===-- cmpdi2_test.c - Test __cmpdi2 -------------------------------------===//
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 __cmpdi2 for the compiler_rt library.
12 //===----------------------------------------------------------------------===//
17 // Returns: if (a < b) returns 0
18 // if (a == b) returns 1
19 // if (a > b) returns 2
21 si_int
__cmpdi2(di_int a
, di_int b
);
23 int test__cmpdi2(di_int a
, di_int b
, si_int expected
)
25 si_int x
= __cmpdi2(a
, b
);
27 printf("error in __cmpdi2(0x%llX, 0x%llX) = %d, expected %d\n",
32 char assumption_1
[sizeof(di_int
) == 2*sizeof(si_int
)] = {0};
36 if (test__cmpdi2(0, 0, 1))
38 if (test__cmpdi2(1, 1, 1))
40 if (test__cmpdi2(2, 2, 1))
42 if (test__cmpdi2(0x7FFFFFFF, 0x7FFFFFFF, 1))
44 if (test__cmpdi2(0x80000000, 0x80000000, 1))
46 if (test__cmpdi2(0x80000001, 0x80000001, 1))
48 if (test__cmpdi2(0xFFFFFFFF, 0xFFFFFFFF, 1))
50 if (test__cmpdi2(0x000000010000000LL
, 0x000000010000000LL
, 1))
52 if (test__cmpdi2(0xFFFFFFFFFFFFFFFFLL
, 0xFFFFFFFFFFFFFFFFLL
, 1))
55 if (test__cmpdi2(0x0000000200000002LL
, 0x0000000300000001LL
, 0))
57 if (test__cmpdi2(0x0000000200000002LL
, 0x0000000300000002LL
, 0))
59 if (test__cmpdi2(0x0000000200000002LL
, 0x0000000300000003LL
, 0))
62 if (test__cmpdi2(0x0000000200000002LL
, 0x0000000100000001LL
, 2))
64 if (test__cmpdi2(0x0000000200000002LL
, 0x0000000100000002LL
, 2))
66 if (test__cmpdi2(0x0000000200000002LL
, 0x0000000100000003LL
, 2))
69 if (test__cmpdi2(0x0000000200000002LL
, 0x0000000200000001LL
, 2))
71 if (test__cmpdi2(0x0000000200000002LL
, 0x0000000200000002LL
, 1))
73 if (test__cmpdi2(0x0000000200000002LL
, 0x0000000200000003LL
, 0))