1 TEST_FUNCS (longlong_i, long long, int,
2 	    1234LL, -987)
3 TEST_FUNCS (longlong_d, long long, double,
4 	    1234LL, -987.0)
5 #ifndef SKIP_COMPLEX
6 #ifndef SKIP_COMPLEX_INT
7 TEST_FUNCS (complexint_i, _Complex int, int,
8 	    1234 + 567i, -987)
9 TEST_FUNCS (complexint_d, _Complex int, double,
10 	    1234 + 567i, -987.0)
11 #endif
12 TEST_FUNCS (complexdouble_i, _Complex double, int,
13 	    1234.0 + 567.0i, -987)
14 TEST_FUNCS (complexdouble_d, _Complex double, double,
15 	    1234.0 + 567.0i, -987.0)
16 #ifndef SKIP_COMPLEX_INT
17 TEST_FUNCS (complexlonglong_i, _Complex long long, int,
18 	    1234LL + 567LLi, -987)
19 TEST_FUNCS (complexlonglong_d, _Complex long long, double,
20 	    1234LL + 567LLi, -987.0)
21 #endif
22 #endif
23