]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/gcc/config/darwin9.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / gcc / config / darwin9.h
1 /* The linker can generate branch islands.  */
2 #define DARWIN_LINKER_GENERATES_ISLANDS 1
3
4 #undef  ASM_OUTPUT_ALIGNED_COMMON
5 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN)              \
6   do {                                                                  \
7     unsigned HOST_WIDE_INT _new_size = (SIZE);                          \
8     fprintf ((FILE), ".comm ");                                         \
9     assemble_name ((FILE), (NAME));                                     \
10     if (_new_size == 0) _new_size = 1;                                  \
11     fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n",            \
12              _new_size, floor_log2 ((ALIGN) / BITS_PER_UNIT));          \
13   } while (0)