diff options
author | Richard Guenther <rguenther@suse.de> | 2009-11-30 10:49:49 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2009-11-30 10:49:49 +0000 |
commit | a8fc928da333e8deb08fe0b2f8396acc63040694 (patch) | |
tree | 853dc8e57592e9c820547268af80f64e1d2b517f /gcc/tree.c | |
parent | 94855a14a1d3fa593aa672791db273dc7c814aa8 (diff) | |
download | gcc-a8fc928da333e8deb08fe0b2f8396acc63040694.zip gcc-a8fc928da333e8deb08fe0b2f8396acc63040694.tar.gz gcc-a8fc928da333e8deb08fe0b2f8396acc63040694.tar.bz2 |
tree.c (free_lang_data): Do not set debug_info_level to none if terse.
2009-11-30 Richard Guenther <rguenther@suse.de>
* tree.c (free_lang_data): Do not set debug_info_level to
none if terse.
From-SVN: r154781
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4934,7 +4934,7 @@ free_lang_data (void) /* FIXME. Remove after save_debug_info is working. */ if (!(flag_generate_lto - || (!flag_gtoggle && debug_info_level <= DINFO_LEVEL_TERSE))) + || (!flag_gtoggle && debug_info_level == DINFO_LEVEL_NONE))) return 0; /* Traverse the IL resetting language specific information for |