aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/ubsan/div-by-zero-5.c
blob: 7a28bacd14ba743cf070fa1c8e7f3f1f73bad753 (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile} */
/* { dg-options "-fsanitize=integer-divide-by-zero" } */

void
foo (void)
{
  int A[-2 / -1] = {};
}