2017-11-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr59940.c
blob6dba8c713fcfefa1e9f061762b69314bde2f4a0d
1 /* PR c/59940 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wconversion -Woverflow" } */
5 int f (unsigned int);
6 typedef int sitype __attribute__((mode(SI)));
8 int
9 g (void)
11 sitype si = 12;
12 unsigned int ui = -1; /* { dg-warning "21:negative integer implicitly converted to unsigned type" } */
13 unsigned char uc;
14 ui = si; /* { dg-warning "8:conversion" } */
15 si = 0x80000000; /* { dg-warning "8:conversion of unsigned constant value to negative integer" } */
16 si = 3.2f; /* { dg-warning "8:conversion" } */
17 uc = 256; /* { dg-warning "8:large integer implicitly truncated to unsigned type" } */
18 si = 0x800000000; /* { dg-warning "8:overflow in implicit constant conversion" } */
19 return f (si) /* { dg-warning "13:conversion" } */
20 + f (si); /* { dg-warning "15:conversion" } */
23 int
24 y (void)
26 f (); /* { dg-error "3:too few arguments to function" } */
27 g (0xa); /* { dg-error "3:too many arguments to function" } */