On Wed, Nov 20, 2013 at 11:47:42AM -0500, Andrew MacLeod wrote:
> + static inline struct gimplify_ctx *
> + ctx_alloc (void)
> + {
> + struct gimplify_ctx * c = ctx_pool;
> +
> + if (c)
> + ctx_pool = c->prev_context;
> + else
> + c = (struct gimplify_ctx *) xmalloc (sizeof (struct gimplify_ctx));
Use
c = XNEW (struct gimplify_ctx);
instead?
Jakub
