1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_divti3
12 COMPILER_RT_ABI ti_int
__divti3(ti_int a
, ti_int b
);
14 int test__divti3(ti_int a
, ti_int b
, ti_int expected
)
16 ti_int x
= __divti3(a
, b
);
26 expectedt
.all
= expected
;
27 printf("error in __divti3: 0x%llX%.16llX / 0x%llX%.16llX = "
28 "0x%llX%.16llX, expected 0x%llX%.16llX\n",
29 at
.s
.high
, at
.s
.low
, bt
.s
.high
, bt
.s
.low
, xt
.s
.high
, xt
.s
.low
,
30 expectedt
.s
.high
, expectedt
.s
.low
);
35 char assumption_1
[sizeof(ti_int
) == 2*sizeof(di_int
)] = {0};
42 if (test__divti3(0, 1, 0))
44 if (test__divti3(0, -1, 0))
47 if (test__divti3(2, 1, 2))
49 if (test__divti3(2, -1, -2))
51 if (test__divti3(-2, 1, -2))
53 if (test__divti3(-2, -1, 2))
56 if (test__divti3(make_ti(0x8000000000000000LL
, 0), 1, make_ti(0x8000000000000000LL
, 0)))
58 if (test__divti3(make_ti(0x8000000000000000LL
, 0), -1, make_ti(0x8000000000000000LL
, 0)))
60 if (test__divti3(make_ti(0x8000000000000000LL
, 0), -2, make_ti(0x4000000000000000LL
, 0)))
62 if (test__divti3(make_ti(0x8000000000000000LL
, 0), 2, make_ti(0xC000000000000000LL
, 0)))