summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/cccp.c4
1 files 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);
}