Have global_block inherit from block

This changes global_block to inherit from block, which is what was
always intended.
This commit is contained in:
Tom Tromey
2023-01-20 07:14:46 -07:00
parent 44bb9f9e7a
commit 56c0cd6158
2 changed files with 2 additions and 8 deletions

View File

@@ -397,9 +397,7 @@ allocate_block (struct obstack *obstack)
struct block *
allocate_global_block (struct obstack *obstack)
{
struct global_block *bl = new (obstack) struct global_block;
return &bl->block;
return new (obstack) struct global_block;
}
/* See block.h. */