diff options
Diffstat (limited to 'gcc/config/darwin.h')
-rw-r--r-- | gcc/config/darwin.h | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index 9d7c590..9867f1f 100644 --- a/gcc/config/darwin.h +++ b/gcc/config/darwin.h @@ -487,23 +487,8 @@ objc_section_init () \ #undef TARGET_ASM_SELECT_SECTION #define TARGET_ASM_SELECT_SECTION machopic_select_section - -/* This can be called with address expressions as "rtx". - They must go in "const". */ -#undef SELECT_RTX_SECTION -#define SELECT_RTX_SECTION(mode, rtx, align) \ - do \ - { \ - if (GET_MODE_SIZE (mode) == 8) \ - literal8_section (); \ - else if (GET_MODE_SIZE (mode) == 4 \ - && (GET_CODE (rtx) == CONST_INT \ - || GET_CODE (rtx) == CONST_DOUBLE)) \ - literal4_section (); \ - else \ - const_section (); \ - } \ - while (0) +#undef TARGET_ASM_SELECT_RTX_SECTION +#define TARGET_ASM_SELECT_RTX_SECTION machopic_select_rtx_section #define ASM_DECLARE_UNRESOLVED_REFERENCE(FILE,NAME) \ do { \ |