3 typedef __INT32_TYPE__
int32_t;
4 typedef __INT64_TYPE__
int64_t;
5 struct X
{ int32_t i
; int32_t j
; };
8 ((struct X
*)z
)->i
= 0x05060708;
9 ((struct X
*)z
)->j
= 0x01020304;
10 *z
= 0x0102030405060708;
17 asm ("" : "=r" (p
) : "0" (&l
));
19 if (l
!= 0x0102030405060708)