* c-c++-common/ubsan/align-7.c: Skip for -flto -fno-fat-lto-objects.
[official-gcc.git] / gcc / testsuite / c-c++-common / ubsan / save-expr-3.c
blobdd2903bd68229d666a85ef8c8ceb758f8c900ff3
1 /* { dg-do compile } */
2 /* { dg-options "-fsanitize=shift -Wall -Werror -O" } */
4 int x;
6 int
7 foo (int i, int u)
9 return (i << u) << x;
12 int
13 bar (int i, int u)
15 return (i >> u) >> x;