1 /* Test for diagnostics for constant overflow. Test with -pedantic. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-options "-std=c99 -pedantic" } */
10 /* Unsigned overflow wraps around. */
12 /* Overflow in an unevaluated part of an expression is OK (example
15 E3
= 1 / 0, /* { dg-warning "division by zero" } */
16 /* { dg-error "enumerator value for 'E3' is not an integer constant" "enum error" { target *-*-* } 15 } */
17 /* But as in DR#031, the 1/0 in an evaluated subexpression means the
18 whole expression violates the constraints. */
19 E4
= 0 * (1 / 0), /* { dg-warning "division by zero" } */
20 /* { dg-error "enumerator value for 'E4' is not an integer constant" "enum error" { xfail *-*-* } 19 } */
21 E5
= INT_MAX
+ 1, /* { dg-warning "integer overflow in expression" } */
22 /* { dg-warning "overflow in constant expression" "constant" { target *-*-* } 21 } */
23 /* Again, overflow in evaluated subexpression. */
24 E6
= 0 * (INT_MAX
+ 1), /* { dg-warning "integer overflow in expression" } */
25 /* { dg-warning "overflow in constant expression" "constant" { target *-*-* } 24 } */
26 /* A cast does not constitute overflow in conversion. */
32 int : 0 * (1 / 0); /* { dg-warning "division by zero" } */
33 int : 0 * (INT_MAX
+ 1); /* { dg-warning "integer overflow in expression" } */
34 /* { dg-warning "overflow in constant expression" "constant" { target *-*-* } 33 } */
40 /* This expression is not required to be a constant expression, so
41 it should just involve undefined behavior at runtime. */
42 int c
= INT_MAX
+ 1; /* { dg-warning "integer overflow in expression" } */
46 /* But this expression does need to be constant. */
47 static int sc
= INT_MAX
+ 1; /* { dg-warning "integer overflow in expression" } */
48 /* { dg-warning "overflow in constant expression" "constant" { target *-*-* } 47 } */
50 /* The first two of these involve overflow, so are not null pointer
51 constants. The third has the overflow in an unevaluated
52 subexpression, so is a null pointer constant. */
53 void *p
= 0 * (INT_MAX
+ 1); /* { dg-warning "integer overflow in expression" } */
54 /* { dg-warning "overflow in constant expression" "constant" { target *-*-* } 53 } */
55 /* { dg-warning "initialization makes pointer from integer without a cast" "null" { target *-*-* } 53 } */
56 void *q
= 0 * (1 / 0); /* { dg-warning "division by zero" } */
57 /* { dg-warning "initialization makes pointer from integer without a cast" "null" { xfail *-*-* } 56 } */
58 void *r
= (1 ? 0 : INT_MAX
+1);
65 case 0 * (1/0): /* { dg-warning "division by zero" } */
67 case 1 + 0 * (INT_MAX
+ 1): /* { dg-warning "integer overflow in expression" } */
68 /* { dg-warning "overflow in constant expression" "constant" { target *-*-* } 67 } */
76 return INT_MAX
+ 1; /* { dg-warning "integer overflow in expression" } */
82 return INT_MAX
+ 1 - INT_MAX
; /* { dg-warning "integer overflow in expression" } */
85 void fuc (unsigned char);
86 void fsc (signed char);
91 fsc (SCHAR_MAX
+ 1); /* { dg-warning "overflow in implicit constant conversion" } */
92 fsc (SCHAR_MIN
- 1); /* { dg-warning "overflow in implicit constant conversion" } */
93 fsc (UCHAR_MAX
); /* { dg-warning "overflow in implicit constant conversion" } */
94 fsc (UCHAR_MAX
+ 1); /* { dg-warning "overflow in implicit constant conversion" } */
96 fuc (UCHAR_MAX
+ 1); /* { dg-warning "large integer implicitly truncated to unsigned type" } */
98 fuc (SCHAR_MIN
- 1); /* { dg-warning "large integer implicitly truncated to unsigned type" } */
99 fuc (-UCHAR_MAX
); /* { dg-warning "large integer implicitly truncated to unsigned type" } */
102 void fui (unsigned int);
103 void fsi (signed int);
111 /* For some reason, we only give certain warnings for implicit
112 conversions among values of the same precision with -Wconversion,
113 while we don't give others at all. */
114 fsi ((unsigned)INT_MAX
+ 1);
115 si
= (unsigned)INT_MAX
+ 1;
116 si
= x
? (unsigned)INT_MAX
+ 1 : 1;
117 fsi ((unsigned)INT_MAX
+ 2);
118 si
= (unsigned)INT_MAX
+ 2;
119 si
= x
? (unsigned)INT_MAX
+ 2 : 1;
127 ui
= x
? INT_MIN
: 1U;