view gcc/testsuite/gcc.dg/overflow-warn-6.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* Test non-constant operands in overflowed expressions.  */
/* { dg-do compile } */
/* { dg-options "-std=c99 -Woverflow" } */

#include <limits.h>

int 
h1 (int x)
{
  return x * (0 * (INT_MAX + 1)); /* { dg-warning "integer overflow in expression" } */
}

int 
h2 (int x)
{
  return ((INT_MAX + 1) * 0) * x; /* { dg-warning "integer overflow in expression" } */
}