Skip to content
Snippets Groups Projects
Commit 53c5aa99 authored by Richard Earnshaw's avatar Richard Earnshaw Committed by Richard Earnshaw
Browse files

[arm] Don't pass -mfpu=auto through to the assembler.

The assembler doesn't understand -mfpu=auto.  The easiest way to handle this
is to surpress this value from being passed through, while still passing
through legacy values.

	* config/arm/elf.h (ASM_SPEC): Only pass -mfpu through to the
	assembler when it is not -mfpu=auto.

From-SVN: r249281
parent 86794453
No related branches found
No related tags found
No related merge requests found
2017-06-16 Richard Earnshaw <rearnsha@arm.com>
* config/arm/elf.h (ASM_SPEC): Only pass -mfpu through to the
assembler when it is not -mfpu=auto.
2017-06-16 Richard Earnshaw <rearnsha@arm.com>
 
* config/arm/arm.h (BIG_LITTLE_SPEC): Delete macro.
......
......@@ -64,7 +64,7 @@
%{mapcs-*:-mapcs-%*} \
%(subtarget_asm_float_spec) \
%{mthumb-interwork:-mthumb-interwork} \
%{mfloat-abi=*} %{mfpu=*} \
%{mfloat-abi=*} %{!mfpu=auto: %{mfpu=*}} \
%(subtarget_extra_asm_spec)"
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment