aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorTrevor Saunders <tbsaunde+gcc@tbsaunde.org>2015-11-15 00:17:51 +0000
committerTrevor Saunders <tbsaunde@gcc.gnu.org>2015-11-15 00:17:51 +0000
commit5394314855439d86e5bb52ef07713472e2fee0dc (patch)
tree6e75389db96858652650dbbfda5630f66f3e0bde /gcc/function.c
parentd36402d9f0e6928949f9da8273859fdc5fe7b286 (diff)
downloadgcc-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/function.c')
-rw-r--r--gcc/function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c
index a637cb3..afc2c87 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -4671,7 +4671,7 @@ number_blocks (tree fn)
/* For SDB and XCOFF debugging output, we start numbering the blocks
from 1 within each function, rather than keeping a running
count. */
-#if defined (SDB_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
+#if SDB_DEBUGGING_INFO || defined (XCOFF_DEBUGGING_INFO)
if (write_symbols == SDB_DEBUG || write_symbols == XCOFF_DEBUG)
next_block_index = 1;
#endif