view gcc/testsuite/c-c++-common/ubsan/pr88215.c @ 145:1830386684a0

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

/* PR c++/88215 */
/* { dg-do compile } */
/* { dg-options "-fsanitize=integer-divide-by-zero" } */

int
foo (void)
{
  int a = 2, __attribute__ ((__unused__)) b = 1;
  int f = a / b;
  return f;
}