diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-19 17:12:21 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-19 17:12:21 -0400 |
commit | 7ea426fe97833f6d4b8fc0f5b5102a3c059b506b (patch) | |
tree | 5f15474d7f4e575ea35f80afe76deece3c6bf855 /gcc | |
parent | a72e508d5303111a124a33b158f789c9fed76d19 (diff) | |
download | gcc-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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cccp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |