diff options
author | Zack Weinberg <zack@codesourcery.com> | 2004-08-25 07:34:54 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2004-08-25 07:34:54 +0000 |
commit | f8ca7e49b358124e451580bf3bcd3b1d3cb05608 (patch) | |
tree | 7abdfe92f2a97062a9c729c69ce849d227970c39 /gcc/c-lex.c | |
parent | 69b9b0d2c3bab21445547546a4742e73a515ad36 (diff) | |
download | gcc-f8ca7e49b358124e451580bf3bcd3b1d3cb05608.tar.gz |
flags.h (enum debug_info_type): Remove DWARF_DEBUG.
* flags.h (enum debug_info_type): Remove DWARF_DEBUG.
* defaults.h (PREFERRED_DEBUGGING_TYPE): Remove check for
DWARF_DEBUGGING_INFO from choice-of-definition chain;
restructure using C89 features (#elif, #error).
* c-lex.c, final.c, opts.c, config/cris/cris.c, config/frv/frv.c
* config/sh/sh.h: Remove references to DWARF_DEBUG.
* doc/invoke.texi: Remove references to DWARF version 1;
clarify why -gdwarf-2<n> doesn't work.
cp:
* class.c, search.c: Remove references to DWARF_DEBUG.
From-SVN: r86540
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 7fc47ba8db3..74f8be69c94 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -104,7 +104,7 @@ init_c_lex (void) /* Set the debug callbacks if we can use them. */ if (debug_info_level == DINFO_LEVEL_VERBOSE - && (write_symbols == DWARF_DEBUG || write_symbols == DWARF2_DEBUG + && (write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)) { cb->define = cb_define; |