1 //===-- udivti3_test.c - Test __udivti3 -----------------------------------===//
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 __udivti3 for the compiler_rt library.
12 //===----------------------------------------------------------------------===//
21 tu_int
__udivti3(tu_int a
, tu_int b
);
23 int test__udivti3(tu_int a
, tu_int b
, tu_int expected_q
)
25 tu_int q
= __udivti3(a
, b
);
35 expected_qt
.all
= expected_q
;
36 printf("error in __udivti3: 0x%llX%.16llX / 0x%llX%.16llX = "
37 "0x%llX%.16llX, expected 0x%llX%.16llX\n",
38 at
.s
.high
, at
.s
.low
, bt
.s
.high
, bt
.s
.low
, qt
.s
.high
, qt
.s
.low
,
39 expected_qt
.s
.high
, expected_qt
.s
.low
);
41 return q
!= expected_q
;
49 if (test__udivti3(0, 1, 0))
51 if (test__udivti3(2, 1, 2))
53 if (test__udivti3(make_tu(0x8000000000000000uLL
, 0), 1,
54 make_tu(0x8000000000000000uLL
, 0)))
56 if (test__udivti3(make_tu(0x8000000000000000uLL
, 0), 2,
57 make_tu(0x4000000000000000uLL
, 0)))
59 if (test__udivti3(make_tu(0xFFFFFFFFFFFFFFFFuLL
, 0xFFFFFFFFFFFFFFFFuLL
), 2,
60 make_tu(0x7FFFFFFFFFFFFFFFuLL
, 0xFFFFFFFFFFFFFFFFuLL
)))