From beb14bd522f5e60f7a2c85f4308a412b18e8e8ce Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Mon, 19 May 2003 07:27:45 +0000 Subject: [PATCH] mips.c (override_options): Disable explicit relocs for old ABIs unless using gas. * config/mips/mips.c (override_options): Disable explicit relocs for old ABIs unless using gas. From-SVN: r66949 --- gcc/ChangeLog | 5 +++++ gcc/config/mips/mips.c | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 849f6b0f500..8765e3e3595 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-05-19 Richard Sandiford + + * config/mips/mips.c (override_options): Disable explicit + relocs for old ABIs unless using gas. + 2003-05-18 Eric Christopher * config/mips/mips.h: Remove definition of g_switch_value. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index c822f37cc8b..8474e473574 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -5681,6 +5681,13 @@ override_options () target_flags &= ~MASK_EXPLICIT_RELOCS; } + /* Explicit relocations for "old" ABIs are a GNU extension. Unless + the user has said otherwise, assume that they are not available + with assemblers other than gas. */ + if (!TARGET_NEWABI && !TARGET_GAS + && (target_flags_explicit & MASK_EXPLICIT_RELOCS) == 0) + target_flags &= ~MASK_EXPLICIT_RELOCS; + /* -mrnames says to use the MIPS software convention for register names instead of the hardware names (ie, $a0 instead of $4). We do this by switching the names in mips_reg_names, which the -- 2.30.2