From: Richard Kenner Date: Fri, 29 Jul 1994 21:16:58 +0000 (-0400) Subject: (special_symbol, do_xifdef): Don't access value.defn of a T_CONST. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4f8454651173aed131dda8d9e727e39726ea117d;p=gcc.git (special_symbol, do_xifdef): Don't access value.defn of a T_CONST. From-SVN: r7819 --- diff --git a/gcc/cccp.c b/gcc/cccp.c index 640b36bcc10..01f1c665531 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -3925,7 +3925,8 @@ special_symbol (hp, op) goto oops; if (hp = lookup (ip->bufp, -1, -1)) { if (pcp_outfile && pcp_inside_if - && hp->value.defn->predefined) + && (hp->type == T_CONST + || (hp->type == T_MACRO && hp->value.defn->predefined))) /* Output a precondition for this macro use. */ fprintf (pcp_outfile, "#define %s\n", hp->name); buf = " 1 "; @@ -6790,7 +6791,9 @@ do_xifdef (buf, limit, op, keyword) if (pcp_outfile) { /* Output a precondition for this macro. */ - if (hp && hp->value.defn->predefined) + if (hp && + (hp->type == T_CONST + || (hp->type == T_MACRO && hp->value.defn->predefined))) fprintf (pcp_outfile, "#define %s\n", hp->name); else { U_CHAR *cp = buf;