* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / unalign-1.c
blob350111fdff4112ebe4efae15cfde634353d4c02d
1 typedef struct __attribute__ ((__packed__))
3 char valueField[2];
4 } ptp_tlv_t;
5 typedef struct __attribute__ ((__packed__))
7 char stepsRemoved;
8 ptp_tlv_t tlv[1];
9 } ptp_message_announce_t;
10 int ptplib_send_announce(int sequenceId, int i)
12 ptp_message_announce_t tx_packet;
13 ((long long *)tx_packet.tlv[0].valueField)[sequenceId] = i;
14 f(&tx_packet);