aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/ubsan/pr58443-2.c
blob: a135758a86f1dd8c38feb09e8a4f3342a53b6899 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR sanitizer/58443 */
/* { dg-do compile } */
/* { dg-options "-fsanitize=unreachable,integer-divide-by-zero -w" } */

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

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