block_set_scope and block_set_using unconditionally allocate the block
namespace object. However, this isn't truly needed, so arrange to
only allocate when it is.
block_set_scope (struct block *block, const char *scope,
struct obstack *obstack)
{
+ if (scope == nullptr || scope[0] == '\0')
+ {
+ /* Don't bother. */
+ return;
+ }
+
block_initialize_namespace (block, obstack);
block->namespace_info ()->scope = scope;
struct using_direct *using_decl,
struct obstack *obstack)
{
+ if (using_decl == nullptr)
+ {
+ /* Don't bother. */
+ return;
+ }
+
block_initialize_namespace (block, obstack);
block->namespace_info ()->using_decl = using_decl;