From 7ea426fe97833f6d4b8fc0f5b5102a3c059b506b Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 19 Jun 1995 17:12:21 -0400 Subject: [PATCH] (collect_expansion): Work around enum bug in vax ultrix 4.3 pcc. From-SVN: r10012 --- gcc/cccp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/cccp.c b/gcc/cccp.c index eeb66976b0e..065f0578beb 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -6026,7 +6026,7 @@ collect_expansion (buf, end, nargs, arglist) p++; concat_sharp_token_type = c; if (is_hor_space[*p]) { - concat_sharp_token_type++; + concat_sharp_token_type = c + 1; p++; SKIP_WHITE_SPACE (p); } @@ -6040,7 +6040,7 @@ collect_expansion (buf, end, nargs, arglist) exp_p--; stringify_sharp_token_type = c; if (is_hor_space[*p]) { - stringify_sharp_token_type++; + stringify_sharp_token_type = c + 1; p++; SKIP_WHITE_SPACE (p); } -- 2.30.2