aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr36172.c
blob: 388a03f99067bb5f8d16d20b0839a43b3338dd27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
int f(float * );
__SIZE_TYPE__ FcCharSetFreeze (int *fcs, int b)
{
  int i;
  int a = 0;
  for (i = 0; i < *fcs; i++)
  {
    float *leaf = (float *)fcs;
    int hash = f (leaf);
    if (hash)
      a = b;
    if (!a)
      return 0;
  }
  return (__SIZE_TYPE__) fcs;
}