diff options
author | Bernardo Innocenti <bernie@gcc.gnu.org> | 2003-10-11 05:06:45 +0200 |
---|---|---|
committer | Bernardo Innocenti <bernie@gcc.gnu.org> | 2003-10-11 05:06:45 +0200 |
commit | a2ef3db72b61490b5522f80abd7010ac404641d1 (patch) | |
tree | 16b02d2698d4554f58c2b0ba987554087675890d /gcc/config/m68k/m68k-protos.h | |
parent | 4f5acf56e39af0f7c25362cfd4206807edf54034 (diff) | |
download | gcc-a2ef3db72b61490b5522f80abd7010ac404641d1.zip gcc-a2ef3db72b61490b5522f80abd7010ac404641d1.tar.gz gcc-a2ef3db72b61490b5522f80abd7010ac404641d1.tar.bz2 |
lb1sf68.asm: Add __PIC__ and __ID_SHARED_LIBRARY__ support.
* config/m68k/lb1sf68.asm: Add __PIC__ and __ID_SHARED_LIBRARY__
support.
* config/m68k/m68k-none.h (ASM_SPEC): Pass --pcrel to assembler on
-fpic, -fPIC, -msep-data and -mid-shared-library.
* config/m68k/m68k.c (m68k_library_id_string): New global variable.
(override_options): Add -msep-data and -mshared-library-id support.
(m68k_output_function_prologue): Generate code to load A5 for
TARGET_ID_SHARED_LIBRARY and TARGET_SEP_DATA.
(m68k_output_mi_thunk): Emit indirect jump on TARGET_ID_SHARED_LIBRARY.
(m68k_output_pic_call): New function.
* gcc/config/m68k/m68k.h (TARGET_SEP_DATA): New target flag.
(TARGET_ID_SHARED_LIBRARY): Ditto.
(TARGET_SWITCHES): Add switches for -mid-shared-library and -msep-data.
* gcc/config/m68k/m68k.md (call): Call m68k_output_pic_call().
(call_value): Likewise.
From-SVN: r72324
Diffstat (limited to 'gcc/config/m68k/m68k-protos.h')
-rw-r--r-- | gcc/config/m68k/m68k-protos.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/config/m68k/m68k-protos.h b/gcc/config/m68k/m68k-protos.h index c54aea2..16800e8 100644 --- a/gcc/config/m68k/m68k-protos.h +++ b/gcc/config/m68k/m68k-protos.h @@ -38,6 +38,7 @@ extern const char *output_addsi3 (rtx *); extern const char *output_andsi3 (rtx *); extern const char *output_iorsi3 (rtx *); extern const char *output_xorsi3 (rtx *); +extern void m68k_output_pic_call (rtx dest); extern void output_dbcc_and_branch (rtx *); extern int const_uint32_operand (rtx, enum machine_mode); extern int const_sint32_operand (rtx, enum machine_mode); |