2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20011114-2.c
blob46f0aedeb3ab46dd4c87f859b8b882bcc22c009e
1 typedef struct { int c, d, e, f, g; } D;
3 void bar (unsigned long, unsigned long);
4 void foo (D *y)
6 int x = 0;
8 if (y->f == 0)
9 x |= 0x1;
10 if (y->g == 0)
11 x |= 0x2;
12 bar ((x << 16) | (y->c & 0xffff), (y->d << 16) | (y->e & 0xffff));