annotate gcc/testsuite/gcc.c-torture/compile/20011114-2.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 typedef struct { int c, d, e, f, g; } D;
kono
parents:
diff changeset
2
kono
parents:
diff changeset
3 void bar (unsigned long, unsigned long);
kono
parents:
diff changeset
4 void foo (D *y)
kono
parents:
diff changeset
5 {
kono
parents:
diff changeset
6 int x = 0;
kono
parents:
diff changeset
7
kono
parents:
diff changeset
8 if (y->f == 0)
kono
parents:
diff changeset
9 x |= 0x1;
kono
parents:
diff changeset
10 if (y->g == 0)
kono
parents:
diff changeset
11 x |= 0x2;
kono
parents:
diff changeset
12 bar ((x << 16) | (y->c & 0xffff), (y->d << 16) | (y->e & 0xffff));
kono
parents:
diff changeset
13 }