aboutsummaryrefslogtreecommitdiff
path: root/libcpp/macro.c
diff options
context:
space:
mode:
authorBernardo Innocenti <bernie@develer.com>2004-07-24 20:04:42 +0200
committerBernardo Innocenti <bernie@gcc.gnu.org>2004-07-24 20:04:42 +0200
commit72bb2c39ce1c3506d94f7e2e7c2db84ee8535add (patch)
tree30cd686465d5c32ae3feab21b35a78240675f666 /libcpp/macro.c
parent5673cd61cee5815e83181a8145e541d091329adf (diff)
downloadgcc-72bb2c39ce1c3506d94f7e2e7c2db84ee8535add.zip
gcc-72bb2c39ce1c3506d94f7e2e7c2db84ee8535add.tar.gz
gcc-72bb2c39ce1c3506d94f7e2e7c2db84ee8535add.tar.bz2
internal.h (xnew, [...]): Remove.
* internal.h (xnew, xcnew, xnewvec, xcnewvec, xobnew): Remove. * directives.c: Use XNEW-family macros from libiberty. * lex.c: Likewise. * macro.c: Likewise. * cpplib.h (cpp_deps_style): Export enum with name. From-SVN: r85121
Diffstat (limited to 'libcpp/macro.c')
-rw-r--r--libcpp/macro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/macro.c b/libcpp/macro.c
index dc58b31..729ea06 100644
--- a/libcpp/macro.c
+++ b/libcpp/macro.c
@@ -919,7 +919,7 @@ next_context (cpp_reader *pfile)
if (result == 0)
{
- result = xnew (cpp_context);
+ result = XNEW (cpp_context);
result->prev = pfile->context;
result->next = 0;
pfile->context->next = result;