(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
ubsan/
c99-wrapv-shift-2.c
       1  /* { dg-do run } */
       2  /* { dg-options "-fsanitize=shift -fwrapv -w -std=c99" } */
       3  
       4  int
       5  main (void)
       6  {
       7    int a = 1;
       8    a <<= 31;
       9  }