aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-03-18 17:20:33 +0000
committerNick Clifton <nickc@redhat.com>2005-03-18 17:20:33 +0000
commit238d258f720ac6df748b9cc6c98646b3e4ddcd7e (patch)
treea2d8c8dd814f1c6a6dbcdf2a63f5671d6c408440 /gas
parentb294bdf8d04c8a3da769f895128cfbb0828ae43d (diff)
downloadfsf-binutils-gdb-238d258f720ac6df748b9cc6c98646b3e4ddcd7e.zip
fsf-binutils-gdb-238d258f720ac6df748b9cc6c98646b3e4ddcd7e.tar.gz
fsf-binutils-gdb-238d258f720ac6df748b9cc6c98646b3e4ddcd7e.tar.bz2
Add support for generating PLT lookups for the ColdFire.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-m68k.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 46ef21c..268209e 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-18 C Jaiprakash <cjaiprakash@noida.hcltech.com>
+
+ * config/tc-m68k.c (m68k_elf_final_processing): Set file specific
+ flag for coldfire v4e.
+
2005-03-17 Bob Wilson <bob.wilson@acm.org>
* config/tc-xtensa.c (xg_apply_tentative_value): Rename to
diff --git a/gas/config/tc-m68k.c b/gas/config/tc-m68k.c
index 8d0ed5c..db67d5e 100644
--- a/gas/config/tc-m68k.c
+++ b/gas/config/tc-m68k.c
@@ -7447,6 +7447,8 @@ void
m68k_elf_final_processing (void)
{
/* Set file-specific flags if this is a cpu32 processor. */
+ if (arch_coldfire_fpu (current_architecture))
+ elf_elfheader (stdoutput)->e_flags |= EF_CFV4E;
if (cpu_of_arch (current_architecture) & cpu32)
elf_elfheader (stdoutput)->e_flags |= EF_CPU32;
else if ((cpu_of_arch (current_architecture) & m68000up)