diff options
author | YamaArashi <shadow962@live.com> | 2016-02-17 06:18:37 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-17 06:18:37 -0800 |
commit | 9cc5f8edb21ac07bff87def5155ee71dff449e37 (patch) | |
tree | b75b0eb06bf733811e4f54bd28dd6fa93fa8f485 /gcc/cpplib.c | |
parent | 75ff61fd74b379f7278b1042e269ea3a6ee66518 (diff) |
get rid of PTR macros
Diffstat (limited to 'gcc/cpplib.c')
-rwxr-xr-x | gcc/cpplib.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |