This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Commit: V850: Pass -msoft-float/-mhard-float on to the assembler
- From: Nick Clifton <nickc at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Tue, 24 Feb 2015 18:03:40 +0000
- Subject: Commit: V850: Pass -msoft-float/-mhard-float on to the assembler
- Authentication-results: sourceware.org; auth=none
Hi Guys,
I am applying the patch below to update the V850 backend so that it
will pass on the -msoft-float and -mhard-float options to the
assembler. This matches up with a recent update to the assembler that
accepts these options.
Cheers
Nick
gcc/ChangeLog
2015-02-24 Nick Clifton <nickc@redhat.com>
* config/v850/v850.h (ASM_SPEC): Pass -msoft-float/-mhard-float on
to the assembler.
Index: config/v850/v850.h
===================================================================
--- config/v850/v850.h (revision 220944)
+++ config/v850/v850.h (working copy)
@@ -111,6 +111,8 @@
#define ASM_SPEC "%{m850es:-mv850e1}%{!mv850es:%{mv*:-mv%*}} \
%{mrelax:-mrelax} \
%{m8byte-align:-m8byte-align} \
+%{msoft-float:-msoft-float} \
+%{mhard-float:-mhard-float} \
%{mgcc-abi:-mgcc-abi}"
#define LINK_SPEC "%{mgcc-abi:-m v850}"