diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2015-11-15 00:17:51 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2015-11-15 00:17:51 +0000 |
commit | 5394314855439d86e5bb52ef07713472e2fee0dc (patch) | |
tree | 6e75389db96858652650dbbfda5630f66f3e0bde /gcc/sdbout.c | |
parent | d36402d9f0e6928949f9da8273859fdc5fe7b286 (diff) | |
download | gcc-5394314855439d86e5bb52ef07713472e2fee0dc.zip gcc-5394314855439d86e5bb52ef07713472e2fee0dc.tar.gz gcc-5394314855439d86e5bb52ef07713472e2fee0dc.tar.bz2 |
remove conditional compilation of sdb debug info
gcc/ChangeLog:
2015-11-14 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* defaults.h: New definition of SDB_DEBUGGING_INFO.
* doc/tm.texi: Regenerate.
* doc/tm.texi.in: Adjust.
* final.c (rest_of_clean_state): Remove check if
SDB_DEBUGGING_INFO is defined.
* function.c (number_blocks): Likewise.
* output.h: Likewise.
* sdbout.c: Likewise.
* toplev.c (process_options): Likewise.
From-SVN: r230390
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index e495a8a..f22bc7c 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -42,6 +42,7 @@ AT&T C compiler. From the example below I would conclude the following: #include "config.h" #include "system.h" #include "coretypes.h" +#include "gsyms.h" #include "tm.h" #include "debug.h" #include "tree.h" @@ -65,8 +66,6 @@ static GTY(()) vec<tree, va_gc> *deferred_global_decls; static GTY(()) tree preinit_symbols; static GTY(()) bool sdbout_initialized; -#ifdef SDB_DEBUGGING_INFO - #include "rtl.h" #include "regs.h" #include "flags.h" @@ -75,7 +74,6 @@ static GTY(()) bool sdbout_initialized; #include "output.h" #include "diagnostic-core.h" #include "tm_p.h" -#include "gsyms.h" #include "langhooks.h" #include "target.h" @@ -1648,6 +1646,4 @@ sdbout_init (const char *input_file_name ATTRIBUTE_UNUSED) preinit_symbols = 0; } -#endif /* SDB_DEBUGGING_INFO */ - #include "gt-sdbout.h" |