* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[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;