* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20030319-1.c
blobdc5ab5774a9912679c4023b8ac9247a7285cc481
1 /* PR 10073 */
2 typedef struct
4 unsigned short digits[4];
5 } INT_64;
7 INT_64 int_64_com (INT_64 a)
9 a.digits[0] ^= 0xFFFF;
10 a.digits[1] ^= 0xFFFF;
11 a.digits[2] ^= 0xFFFF;
12 a.digits[3] ^= 0xFFFF;
13 return a;