From 4f8454651173aed131dda8d9e727e39726ea117d Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 29 Jul 1994 17:16:58 -0400 Subject: [PATCH] (special_symbol, do_xifdef): Don't access value.defn of a T_CONST. From-SVN: r7819 --- gcc/cccp.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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; -- 2.30.2