aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/ubsan/save-expr-2.c
blob: 14ac17def9ce962f8ed2daa5936b7ad08e64b434 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-fsanitize=shift -Wall -Werror -O" } */

int
foo (int i, unsigned int u)
{
  return u / i;
}

int
bar (int i, unsigned int u)
{
  return u % i;
}