(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr100349.c
       1  // { dg-do compile }
       2  // { dg-options "-O2 -w" }
       3  
       4  #include <stdint.h>
       5  uint8_t a;
       6  b(int8_t c) {
       7    int d;
       8  e:
       9    uint32_t f;
      10    for (;;)
      11      for (c = 10; c; c++)
      12        if (0 > (a = c) ?: d) {
      13          f = a;
      14          goto e;
      15        }
      16  }