4 typedef __SIZE_TYPE__
uintptr_t;
5 #elif (__SIZEOF_LONG_LONG__ == __SIZEOF_POINTER__)
6 typedef unsigned long long uintptr_t;
7 #elif (__SIZEOF_LONG__ == __SIZEOF_POINTER__)
8 typedef unsigned long uintptr_t;
9 #elif (__SIZEOF_INT__ == __SIZEOF_POINTER__)
10 typedef unsigned int uintptr_t;
12 #error Add target support here
15 void __attribute__((noinline
))
22 extern void abort (void);
26 uintptr_t l
= (uintptr_t)&b
;