modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr36172.c (about)

     1  int f(float * );
     2  __SIZE_TYPE__ FcCharSetFreeze (int *fcs, int b)
     3  {
     4    int i;
     5    int a = 0;
     6    for (i = 0; i < *fcs; i++)
     7    {
     8      float *leaf = (float *)fcs;
     9      int hash = f (leaf);
    10      if (hash)
    11        a = b;
    12      if (!a)
    13        return;
    14    }
    15    return (__SIZE_TYPE__) fcs;
    16  }
    17