aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorThiemo Seufer <ths@networkno.de>2001-08-16 21:48:28 +0000
committerThiemo Seufer <ths@networkno.de>2001-08-16 21:48:28 +0000
commitbe00bdddadf30549f652e4eebb02dd536b162122 (patch)
treef4a94249c0d56003ed700e6ddad67537b59f0fe7 /gas
parent99c14723f3f437e55488c8819241d359414ec9d6 (diff)
downloadgdb-be00bdddadf30549f652e4eebb02dd536b162122.zip
gdb-be00bdddadf30549f652e4eebb02dd536b162122.tar.gz
gdb-be00bdddadf30549f652e4eebb02dd536b162122.tar.bz2
Set MIPS n32 ABI flag in ELF header if appropriate.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-mips.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 022e058..5b4052b 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,10 @@
2001-08-16 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+ * config/tc-mips.c (mips_elf_final_processing): Set elf header flags
+ for n32 ABI if appropriate.
+
+2001-08-16 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
* config/tc-mips.c (cons_fix_new_mips): Remove.
* config/tc-mips.h (TC_CONS_FIX_NEW): Remove.
(cons_fix_new_mips): Remove.
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c
index a374e3f..53e2efc 100644
--- a/gas/config/tc-mips.c
+++ b/gas/config/tc-mips.c
@@ -11556,6 +11556,10 @@ mips_elf_final_processing ()
else
elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
}
+ else if (strcmp (mips_abi_string, "n32") == 0)
+ elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
+
+ /* Nothing to do for "64". */
if (mips_32bitmode)
elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;