blob: 595b6835e593972b1284ca1eb9e2864dd1a98c0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* PR c/19978 : Test for duplicated warnings (binary operators). */
/* { dg-do compile } */
/* { dg-options "-std=c99 -Woverflow" } */
#include <limits.h>
int
g1 (void)
{
return INT_MAX + 1 - INT_MAX; /* { dg-bogus "integer overflow in expression.*integer overflow in expression" } */
/* { dg-warning "integer overflow in expression" "" { target *-*-* } .-1 } */
}
|