diff options
Diffstat (limited to 'gcc/cp/error.c')
-rw-r--r-- | gcc/cp/error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/error.c b/gcc/cp/error.c index d8fbbde..cb1dcf3 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -3230,7 +3230,7 @@ args_to_string (tree p, int verbose) reinit_cxx_pp (); for (; p; p = TREE_CHAIN (p)) { - if (TREE_VALUE (p) == null_node) + if (null_node_p (TREE_VALUE (p))) pp_cxx_ws_string (cxx_pp, "NULL"); else dump_type (cxx_pp, error_type (TREE_VALUE (p)), flags); |