diff options
author | Mark Mitchell <mark@codesourcery.com> | 2003-12-24 00:14:25 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2003-12-24 00:14:25 +0000 |
commit | def66b107c900d44b72e94cb14a0087a1f61ee0f (patch) | |
tree | 8b0309833e62a84f7c114dbcdc3d3a17cbdbc000 /gcc/toplev.c | |
parent | b8ee7f0279afe920c8e5740499bfd0368f8f806b (diff) | |
download | gcc-def66b107c900d44b72e94cb14a0087a1f61ee0f.zip gcc-def66b107c900d44b72e94cb14a0087a1f61ee0f.tar.gz gcc-def66b107c900d44b72e94cb14a0087a1f61ee0f.tar.bz2 |
Makefile.in (OBJS-common): Remove dwarfout.o.
* Makefile.in (OBJS-common): Remove dwarfout.o.
(dwarfout.o): Remove.
* common.opt: Remove -gdwarf, -gdwarf+.
* defaults.h (PREFERRED_DEBUGGING_TYPE): Do not check for
DWARF_DEBUGGING_INFO.
* dwarf2out.c: Fix typo in comment.
* dwarfout.c: Remove.
* opts.c (common_handle_option): Remove OPT_gdwarf, OPT_gdwarf_.
* toplev.c (process_options): Remove check for
DWARF_DEBUGGING_INFO.
* config/elfos.h (DWARF_DEBUGGING_INFO): Do not #define it or
#undef it.
* config/netware.h (DWARF_DEBUGGING_INFO): Likewise.
* config/ptx4.h (DWARF_DEBUGGING_INFO): Likewise.
* config/vxworks.h (DWARF_DEBUGGING_INFO): Likewise.
* config/alpha/unicosmk.h (DWARF_DEBUGGING_INFO): Likewise.
* config/arc/arc.h (DWARF_DEBUGGING_INFO): Likewise.
* config/i386/sco5.h (DWARF_DEBUGGING_INFO): Likewise.
* config/i386/x86-64.h (DWARF_DEBUGGING_INFO): Likewise.
* config/m32r/m32r.h (DWARF_DEBUGGING_INFO): Likewise.
* config/mcore/mcore-elf.h (DWARF_DEBUGGING_INFO): Likewise.
* config/sparc/linux64.h (DWARF_DEBUGGING_INFO): Likewise.
* config/sparc/liteelf.h (DWARF_DEBUGGING_INFO): Likewise.
* config/sparc/sol26-sld.h (DWARF_DEBUGGING_INFO): Likewise.
* config/sparc/sp86x-elf.h (DWARF_DEBUGGING_INFO): Likewise.
* doc/invoke.texi: Do not mention -gdwarf, -gdwarf-1, -gdwarf-1+,
or -gdwarf+.
* doc/tm.texi: Likewise.
From-SVN: r74996
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 7d01eb6..2a56477 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -4352,10 +4352,6 @@ process_options (void) else if (write_symbols == SDB_DEBUG) debug_hooks = &sdb_debug_hooks; #endif -#ifdef DWARF_DEBUGGING_INFO - else if (write_symbols == DWARF_DEBUG) - debug_hooks = &dwarf_debug_hooks; -#endif #ifdef DWARF2_DEBUGGING_INFO else if (write_symbols == DWARF2_DEBUG) debug_hooks = &dwarf2_debug_hooks; |