OSDN Git Service

* config/sparc/sol2-bi.h (PREFERRED_DEBUGGING_TYPE): Set
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 5 Apr 2004 04:22:57 +0000 (04:22 +0000)
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 5 Apr 2004 04:22:57 +0000 (04:22 +0000)
to DWARF2_DEBUG unconditionally.
(ASM_DEBUG_SPEC): Set the default to --gdwarf2 unconditionally.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80425 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/sparc/sol2-bi.h

index d5486f2..a2f3179 100644 (file)
@@ -1,3 +1,9 @@
+2004-04-05  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
+       * config/sparc/sol2-bi.h (PREFERRED_DEBUGGING_TYPE): Set
+       to DWARF2_DEBUG unconditionally.
+       (ASM_DEBUG_SPEC): Set the default to --gdwarf2 unconditionally.
+
 2004-04-04  Ian Lance Taylor  <ian@wasabisystems.com>
            Nathanael Nerode  <neroden@gcc.gnu.org>
 
index 43180c9..eab3a1a 100644 (file)
 #define MULTILIB_DEFAULTS { "m64" }
 #endif
 
-/* We use stabs-in-elf in 32-bit mode, because that is what the native
-   toolchain uses.  But gdb can't handle truncated 32-bit stabs so we
-   use dwarf2 in 64-bit mode.  */
 #undef PREFERRED_DEBUGGING_TYPE
-#define PREFERRED_DEBUGGING_TYPE (TARGET_ARCH32 ? DBX_DEBUG : DWARF2_DEBUG)
+#define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
 
-/* We can't use the above definition for the purposes of specs.  */
 #if defined(HAVE_AS_GDWARF2_DEBUG_FLAG) && defined(HAVE_AS_GSTABS_DEBUG_FLAG)
-# if DEFAULT_ARCH32_P
-#  define ASM_DEBUG_SPEC "%{gdwarf-2*:--gdwarf2}%{!gdwarf-2*:%{g*:--gstabs}}"
-# else
-#  define ASM_DEBUG_SPEC "%{gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2}}"
-# endif
+# define ASM_DEBUG_SPEC "%{gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2}}"
 #endif