1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_divti3
4 //===-- divti3_test.c - Test __divti3 -------------------------------------===//
6 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
7 // See https://llvm.org/LICENSE.txt for license information.
8 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
10 //===----------------------------------------------------------------------===//
12 // This file tests __divti3 for the compiler_rt library.
14 //===----------------------------------------------------------------------===//
23 COMPILER_RT_ABI ti_int
__divti3(ti_int a
, ti_int b
);
25 int test__divti3(ti_int a
, ti_int b
, ti_int expected
)
27 ti_int x
= __divti3(a
, b
);
37 expectedt
.all
= expected
;
38 printf("error in __divti3: 0x%llX%.16llX / 0x%llX%.16llX = "
39 "0x%llX%.16llX, expected 0x%llX%.16llX\n",
40 at
.s
.high
, at
.s
.low
, bt
.s
.high
, bt
.s
.low
, xt
.s
.high
, xt
.s
.low
,
41 expectedt
.s
.high
, expectedt
.s
.low
);
46 char assumption_1
[sizeof(ti_int
) == 2*sizeof(di_int
)] = {0};
53 if (test__divti3(0, 1, 0))
55 if (test__divti3(0, -1, 0))
58 if (test__divti3(2, 1, 2))
60 if (test__divti3(2, -1, -2))
62 if (test__divti3(-2, 1, -2))
64 if (test__divti3(-2, -1, 2))
67 if (test__divti3(make_ti(0x8000000000000000LL
, 0), 1, make_ti(0x8000000000000000LL
, 0)))
69 if (test__divti3(make_ti(0x8000000000000000LL
, 0), -1, make_ti(0x8000000000000000LL
, 0)))
71 if (test__divti3(make_ti(0x8000000000000000LL
, 0), -2, make_ti(0x4000000000000000LL
, 0)))
73 if (test__divti3(make_ti(0x8000000000000000LL
, 0), 2, make_ti(0xC000000000000000LL
, 0)))