1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_muldi3
7 COMPILER_RT_ABI di_int
__muldi3(di_int a
, di_int b
);
9 int test__muldi3(di_int a
, di_int b
, di_int expected
)
11 di_int x
= __muldi3(a
, b
);
13 printf("error in __muldi3: %lld * %lld = %lld, expected %lld\n",
18 char assumption_1
[sizeof(di_int
) == 2*sizeof(si_int
)] = {0};
22 if (test__muldi3(0, 0, 0))
24 if (test__muldi3(0, 1, 0))
26 if (test__muldi3(1, 0, 0))
28 if (test__muldi3(0, 10, 0))
30 if (test__muldi3(10, 0, 0))
32 if (test__muldi3(0, 81985529216486895LL, 0))
34 if (test__muldi3(81985529216486895LL, 0, 0))
37 if (test__muldi3(0, -1, 0))
39 if (test__muldi3(-1, 0, 0))
41 if (test__muldi3(0, -10, 0))
43 if (test__muldi3(-10, 0, 0))
45 if (test__muldi3(0, -81985529216486895LL, 0))
47 if (test__muldi3(-81985529216486895LL, 0, 0))
50 if (test__muldi3(1, 1, 1))
52 if (test__muldi3(1, 10, 10))
54 if (test__muldi3(10, 1, 10))
56 if (test__muldi3(1, 81985529216486895LL, 81985529216486895LL))
58 if (test__muldi3(81985529216486895LL, 1, 81985529216486895LL))
61 if (test__muldi3(1, -1, -1))
63 if (test__muldi3(1, -10, -10))
65 if (test__muldi3(-10, 1, -10))
67 if (test__muldi3(1, -81985529216486895LL, -81985529216486895LL))
69 if (test__muldi3(-81985529216486895LL, 1, -81985529216486895LL))
72 if (test__muldi3(3037000499LL, 3037000499LL, 9223372030926249001LL))
74 if (test__muldi3(-3037000499LL, 3037000499LL, -9223372030926249001LL))
76 if (test__muldi3(3037000499LL, -3037000499LL, -9223372030926249001LL))
78 if (test__muldi3(-3037000499LL, -3037000499LL, 9223372030926249001LL))
81 if (test__muldi3(4398046511103LL, 2097152LL, 9223372036852678656LL))
83 if (test__muldi3(-4398046511103LL, 2097152LL, -9223372036852678656LL))
85 if (test__muldi3(4398046511103LL, -2097152LL, -9223372036852678656LL))
87 if (test__muldi3(-4398046511103LL, -2097152LL, 9223372036852678656LL))
90 if (test__muldi3(2097152LL, 4398046511103LL, 9223372036852678656LL))
92 if (test__muldi3(-2097152LL, 4398046511103LL, -9223372036852678656LL))
94 if (test__muldi3(2097152LL, -4398046511103LL, -9223372036852678656LL))
96 if (test__muldi3(-2097152LL, -4398046511103LL, 9223372036852678656LL))