annotate gcc/testsuite/gcc.c-torture/compile/pr26725.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 struct { unsigned int num; } *numptr;
kono
parents:
diff changeset
2 void notice (int);
kono
parents:
diff changeset
3 void doit (unsigned int *);
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 void
kono
parents:
diff changeset
6 rewrite_finalize_block (int x)
kono
parents:
diff changeset
7 {
kono
parents:
diff changeset
8 unsigned int *tmp;
kono
parents:
diff changeset
9 while (tmp = (numptr ? &numptr->num : 0), (tmp ? *tmp : 0) > 0)
kono
parents:
diff changeset
10 {
kono
parents:
diff changeset
11 tmp = (numptr ? &numptr->num : 0);
kono
parents:
diff changeset
12 (void) (*tmp ? 0 : notice (x));
kono
parents:
diff changeset
13 doit (tmp);
kono
parents:
diff changeset
14 }
kono
parents:
diff changeset
15 }