aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>2006-06-12 11:03:57 +0000
committerRichard Sandiford <richard@codesourcery.com>2006-06-12 11:03:57 +0000
commit0bc5cccdc7b8e337d53685a46da1e669866484f8 (patch)
treef9f62d64edd44a5e0bdf35b5a59ff485aa4f9bf3
parent2e193077d87930cb1dda472b8747f6ba7e6df593 (diff)
2006-06-12 Fred Fish <fnf@specifix.com>
* config/mips/mips.c (mips_file_start): Create special section ".gcc_compiled_longXX" for o64 ABI as well as EABI. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@114566 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/mips/mips.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c95edb3b349..475c36fccae 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2006-06-12 Fred Fish <fnf@specifix.com>
+
+ * config/mips/mips.c (mips_file_start): Create special section
+ ".gcc_compiled_longXX" for o64 ABI as well as EABI.
+
2006-06-11 Eric Christopher <echristo@apple.com>
PR middle-end/27948
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c
index a12e82af707..d8794024c9e 100644
--- a/gcc/config/mips/mips.c
+++ b/gcc/config/mips/mips.c
@@ -5830,8 +5830,9 @@ mips_file_start (void)
/* There is no ELF header flag to distinguish long32 forms of the
EABI from long64 forms. Emit a special section to help tools
- such as GDB. */
- if (mips_abi == ABI_EABI)
+ such as GDB. Do the same for o64, which is sometimes used with
+ -mlong64. */
+ if (mips_abi == ABI_EABI || mips_abi == ABI_O64)
fprintf (asm_out_file, "\t.section .gcc_compiled_long%d\n",
TARGET_LONG64 ? 64 : 32);