view gcc/testsuite/gcc.dg/pr21085.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */
/* This used to cause excessive use, or a stack overflow, depending on which
   came first.  */
void foo (void)
{
  int maxstringlen = 1;
  int limit = 0, maxblock = 0, maxblockrem = 0;
  maxblockrem = (maxstringlen) % (2147483647 + 1); /* { dg-warning "overflow" } */
}