aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/multiple-overflow-warn-1.c
blob: be7b3b85685d06baa47b45c4d7e1ca2ade5b5aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR c/19978 : Test for duplicated warnings (unary operators).  */
/* { dg-do compile } */
/* { dg-options "-std=c99 -Woverflow" } */

#include <limits.h>

int 
g (void)
{
  return - - - - -INT_MIN; /* { dg-bogus "integer overflow in expression.*integer overflow in expression" } */
  /* { dg-warning "integer overflow in expression" "" { target *-*-* } 10 } */
}