Commit 40353fb3 by Iain Sandoe

darwin.h (ASM_DEBUG_SPEC): New.


gcc:

	* config/darwin.h (ASM_DEBUG_SPEC): New.
	* config/darwin9.h (ASM_DEBUG_SPEC): New.

From-SVN: r181507
parent fc09e5b6
2011-11-19 Iain Sandoe <iains@gcc.gnu.org>
* config/darwin.h (ASM_DEBUG_SPEC): New.
* config/darwin9.h (ASM_DEBUG_SPEC): New.
2011-11-18 Jan Hubicka <jh@suse.cz> 2011-11-18 Jan Hubicka <jh@suse.cz>
* config/i386/i386.c (atom_cost): Disable SSE loop until alignment * config/i386/i386.c (atom_cost): Disable SSE loop until alignment
...@@ -395,6 +395,11 @@ extern GTY(()) int darwin_ms_struct; ...@@ -395,6 +395,11 @@ extern GTY(()) int darwin_ms_struct;
%{Zforce_cpusubtype_ALL:-force_cpusubtype_ALL} \ %{Zforce_cpusubtype_ALL:-force_cpusubtype_ALL} \
%{static}" %{static}"
/* Default ASM_DEBUG_SPEC. Darwin's as cannot currently produce dwarf
debugging data. */
#define ASM_DEBUG_SPEC "%{g*:%{!g0:%{!gdwarf*:--gstabs}}}"
/* We still allow output of STABS. */ /* We still allow output of STABS. */
#define DBX_DEBUGGING_INFO 1 #define DBX_DEBUGGING_INFO 1
......
...@@ -41,6 +41,12 @@ along with GCC; see the file COPYING3. If not see ...@@ -41,6 +41,12 @@ along with GCC; see the file COPYING3. If not see
%{mdynamic-no-pic: %n'-mdynamic-no-pic' overrides '-pie', '-fpie' or '-fPIE'; \ %{mdynamic-no-pic: %n'-mdynamic-no-pic' overrides '-pie', '-fpie' or '-fPIE'; \
:-pie}}" :-pie}}"
/* Only ask as for debug data if the debug style is stabs (since as doesn't
yet generate dwarf.) */
#undef ASM_DEBUG_SPEC
#define ASM_DEBUG_SPEC "%{g*:%{!g0:%{gstabs:--gstabs}}}"
#undef ASM_OUTPUT_ALIGNED_COMMON #undef ASM_OUTPUT_ALIGNED_COMMON
#define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \ #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
do { \ do { \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment