summaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/ubsan/pr80536.c
blob: 23913ad3b75fa20cd2be139d74e2c4d40dd13926 (plain)
1
2
3
4
5
6
7
8
9
/* PR sanitizer/80536 */
/* { dg-do compile } */
/* { dg-options "-fsanitize=undefined" } */

int
foo (int i)
{
  return ((i * (unsigned long long) (-0 + 1UL)) * 2) % 1;
}