1#define	INT_MIN		(-__INT_MAX__ - 1)
2#define	LONG_MIN	(-__LONG_MAX__ - 1)
3#define	LLONG_MIN	(-__LONG_LONG_MAX__ - 1)
4
5static int xd = 1 / 0;
6static int xl = 1L / 0;
7static int xll = 1LL / 0;
8
9static int yd = INT_MIN / -1;
10static long yl = LONG_MIN / -1;
11static long long yll = LLONG_MIN / -1;
12
13static int zd = INT_MIN % -1;
14static long zl = LONG_MIN % -1;
15static long long zll = LLONG_MIN % -1;
16
17/*
18 * check-name: division constants
19 *
20 * check-error-start
21div.c:5:19: warning: division by zero
22div.c:6:20: warning: division by zero
23div.c:7:22: warning: division by zero
24div.c:9:25: warning: constant integer operation overflow
25div.c:10:27: warning: constant integer operation overflow
26div.c:11:34: warning: constant integer operation overflow
27div.c:13:25: warning: constant integer operation overflow
28div.c:14:27: warning: constant integer operation overflow
29div.c:15:34: warning: constant integer operation overflow
30 * check-error-end
31 */
32