Home | History | Annotate | Download | only in Unit

Lines Matching refs:test__addvdi3

23 int test__addvdi3(di_int a, di_int b)
28 printf("error in test__addvdi3(0x%llX, 0x%llX) = %lld, expected %lld\n",
35 // test__addvdi3(0x8000000000000000LL, -1); // should abort
36 // test__addvdi3(-1, 0x8000000000000000LL); // should abort
37 // test__addvdi3(1, 0x7FFFFFFFFFFFFFFFLL); // should abort
38 // test__addvdi3(0x7FFFFFFFFFFFFFFFLL, 1); // should abort
40 if (test__addvdi3(0x8000000000000000LL, 1))
42 if (test__addvdi3(1, 0x8000000000000000LL))
44 if (test__addvdi3(0x8000000000000000LL, 0))
46 if (test__addvdi3(0, 0x8000000000000000LL))
48 if (test__addvdi3(0x7FFFFFFFFFFFFFFLL, -1))
50 if (test__addvdi3(-1, 0x7FFFFFFFFFFFFFFLL))
52 if (test__addvdi3(0x7FFFFFFFFFFFFFFFLL, 0))
54 if (test__addvdi3(0, 0x7FFFFFFFFFFFFFFFLL))