From 9cc5f8edb21ac07bff87def5155ee71dff449e37 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Wed, 17 Feb 2016 06:18:37 -0800 Subject: get rid of PTR macros --- gcc/cpplib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/cpplib.c') diff --git a/gcc/cpplib.c b/gcc/cpplib.c index aafc737..3213913 100755 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -1393,7 +1393,7 @@ create_definition (buf, limit, pfile, predefinition) } } /* now everything from bp before limit is the definition. */ - defn = collect_expansion (pfile, bp, limit, -1, NULL_PTR); + defn = collect_expansion (pfile, bp, limit, -1, NULL); defn->args.argnames = (U_CHAR *) ""; } @@ -3524,7 +3524,7 @@ do_if (pfile, keyword) struct directive *keyword ATTRIBUTE_UNUSED; { HOST_WIDE_INT value = eval_if_expression (pfile); - conditional_skip (pfile, value == 0, T_IF, NULL_PTR); + conditional_skip (pfile, value == 0, T_IF, NULL); return 0; } -- cgit v1.2.3