aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tccpp.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/tccpp.c b/tccpp.c
index b8453da..3453cf7 100644
--- a/tccpp.c
+++ b/tccpp.c
@@ -2401,10 +2401,7 @@ static void parse_number(const char *p)
tcc_error("integer constant overflow");
}
- if (tok == TOK_CINT || tok == TOK_CUINT)
- tokc.i = n;
- else
- tokc.i = n;
+ tokc.i = n;
}
if (ch)
tcc_error("invalid number\n");