diff options
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 37e10e7..12fbb11 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -3242,10 +3242,10 @@ disable_builtin_function (const char *name) error ("cannot disable built-in function `%s'", name); else { - disabled_builtin *new = xmalloc (sizeof (disabled_builtin)); - new->name = name; - new->next = disabled_builtins; - disabled_builtins = new; + disabled_builtin *n = XNEW (disabled_builtin); + n->name = name; + n->next = disabled_builtins; + disabled_builtins = n; } } |