aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/ubsan/save-expr-1.c
blob: ff6c5cff0b15dda4d856e8efa5e4af122603de17 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-fsanitize=shift -Wall -Werror -O -fno-sanitize-recover=shift" } */

static int x;
int
main (void)
{
  int o = 1;
  int y = x << o;
  return y;
}