OC flag_pic /* The ELF assembler handles GOT addressing differently to NetBSD. */ #define GOT_PCREL 0 /* Align output to a power of two. Note ".align 0" is redundant, and also GAS will treat it as ".align 2" which we do not want. */ #define ASM_OUTPUT_ALIGN(STREAM, POWER) \ do \ { \ if ((POWER) > 0) \ fprintf (STREAM, "\t.align\t%d\n", POWER); \ } \ while (0) /* Horrible hack: We want to prevent some libgcc routines being included for some multilibs. The condition should match the one in libgcc/config/arm/lib1funcs.S. */ #if __ARM_ARCH_ISA_ARM || __ARM_ARCH_ISA_THUMB != 1 #undef L_fixdfsi #undef L_fixunsdfsi #undef L_truncdfsf2 #undef L_fixsfsi #undef L_fixunssfsi #undef L_floatdidf #undef L_floatdisf #undef L_floatundidf #undef L_floatundisf #endif