diff options
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r-- | gdb/buildsym.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c index f761444..5c5fc20 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -331,7 +331,7 @@ buildsym_compunit::finish_block_internal pblock && pblock != old_blocks; pblock = pblock->next) { - if (BLOCK_SUPERBLOCK (pblock->block) == NULL) + if (pblock->block->superblock () == NULL) { /* Check to be sure the blocks are nested as we receive them. If the compiler/assembler/linker work, this just @@ -365,7 +365,7 @@ buildsym_compunit::finish_block_internal if (pblock->block->end () > block->end ()) pblock->block->set_end (block->end ()); } - BLOCK_SUPERBLOCK (pblock->block) = block; + pblock->block->set_superblock (block); } opblock = pblock; } |