(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
overflow-warn-6.C
/* Test non-constant operands in overflowed expressions.  */
/* { dg-do compile } */
/* { dg-options "-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" } */
}