(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
ubsan/
div-by-zero-3.c
       1  /* { dg-do run } */
       2  /* { dg-options "-fsanitize=signed-integer-overflow -Wno-overflow" } */
       3  
       4  #include <limits.h>
       5  
       6  int
       7  main (void)
       8  {
       9    volatile int min = INT_MIN;
      10    volatile int zero = 0;
      11  
      12    INT_MIN / -1;
      13    min / -1;
      14    min / (10 * zero - (2 - 1));
      15  
      16    return 0;
      17  }
      18  
      19  /* { dg-output "division of -2147483648 by -1 cannot be represented in type 'int'\[^\n\r]*(\n|\r\n|\r)" } */
      20  /* { dg-output "\[^\n\r]*division of -2147483648 by -1 cannot be represented in type 'int'\[^\n\r]*(\n|\r\n|\r)" } */
      21  /* { dg-output "\[^\n\r]*division of -2147483648 by -1 cannot be represented in type 'int'\[^\n\r]*" } */