aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/ubsan/pr58443-3.c
blob: 5696a62dffa988b425f7701cbbf46eab8cb0afc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* PR sanitizer/58443 */
/* { dg-do compile } */
/* { dg-options "-fsanitize=undefined -w" } */

int
foo (int u, int o)
{
  return u >> o;
}

int
bar (int u, int o)
{
  return u / o;
}

/* { dg-final { scan-assembler "__ubsan_handle_divrem_overflow" } } */
/* { dg-final { scan-assembler "__ubsan_handle_shift_out_of_bounds" } } */