aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-06-19 17:12:21 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-06-19 17:12:21 -0400
commit7ea426fe97833f6d4b8fc0f5b5102a3c059b506b (patch)
tree5f15474d7f4e575ea35f80afe76deece3c6bf855
parenta72e508d5303111a124a33b158f789c9fed76d19 (diff)
downloadgcc-7ea426fe97833f6d4b8fc0f5b5102a3c059b506b.zip
gcc-7ea426fe97833f6d4b8fc0f5b5102a3c059b506b.tar.gz
gcc-7ea426fe97833f6d4b8fc0f5b5102a3c059b506b.tar.bz2
(collect_expansion): Work around enum bug in vax ultrix 4.3 pcc.
From-SVN: r10012
-rw-r--r--gcc/cccp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cccp.c b/gcc/cccp.c
index eeb6697..065f057 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);
}