diff options
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index ce5fef21e29..78c5ab85ef1 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -5668,7 +5668,8 @@ number_blocks (fn) from 1 within each function, rather than keeping a running count. */ #if defined (SDB_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO) - next_block_index = 1; + if (write_symbols == SDB_DEBUG || write_symbols == XCOFF_DEBUG) + next_block_index = 1; #endif block_vector = get_block_vector (DECL_INITIAL (fn), &n_blocks); |