This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix typo in gcc/config/arm/semi.h


Hi Guys,

  I am applying the patch below to fix a typo in the ASM_SPEC declared
  in gcc/config/arm/semi.h.  I discovered this whilst building newlib
  for an arm-pe targeted toolchain.

Cheers
  Nick

gcc/ChangeLog
2005-06-03  Nick Clifton  <nickc@redhat.com>

	* config/arm/semi.h (ASM_SPEC): Fix typo passing -mfloat-abi to
	assembler.

Index: gcc/config/arm/semi.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/arm/semi.h,v
retrieving revision 1.18
diff -c -3 -p -r1.18 semi.h
*** gcc/config/arm/semi.h	9 May 2005 16:26:24 -0000	1.18
--- gcc/config/arm/semi.h	3 Jun 2005 08:05:15 -0000
***************
*** 69,75 ****
  %{mcpu=*:-mcpu=%*} \
  %{march=*:-march=%*} \
  %{mapcs-float:-mfloat} \
! %{msoft-float:-mfloat-abi=soft} %{mhard-float:mfloat-abi=hard} \
  %{mfloat-abi=*} %{mfpu=*} \
  %{mthumb-interwork:-mthumb-interwork} \
  %(subtarget_extra_asm_spec)"
--- 69,75 ----
  %{mcpu=*:-mcpu=%*} \
  %{march=*:-march=%*} \
  %{mapcs-float:-mfloat} \
! %{msoft-float:-mfloat-abi=soft} %{mhard-float:-mfloat-abi=hard} \
  %{mfloat-abi=*} %{mfpu=*} \
  %{mthumb-interwork:-mthumb-interwork} \
  %(subtarget_extra_asm_spec)"


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]