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

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