* ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch
[official-gcc.git] / gcc / testsuite / c-c++-common / ubsan / recovery-common.inc
blob1e0667adba4755f4b4284c9c131cee332293dbaa
1 typedef const unsigned long long int CULLI;
2 typedef volatile int VI;
3 struct s { signed long int a; };
5 int
6 main (void)
8   volatile int shiftcount = 153;
9   volatile int a = __INT_MAX__;
10   volatile int b = __INT_MAX__;
12   a << 152;
13   b << shiftcount;
14   a += 1;
15   b += 2;
17   return 0;