dtoa.c: constified

clang seems to locate never modified local data in the const
segment implicitly.
This commit is contained in:
Nobuyoshi Nakada 2021-01-10 16:32:47 +09:00
parent 63abb5c227
commit 34d02631e7
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

View File

@ -842,7 +842,7 @@ pow5mult(Bigint *b, int k)
{
Bigint *b1, *p5, *p51;
int i;
static int p05[3] = { 5, 25, 125 };
static const int p05[3] = { 5, 25, 125 };
if ((i = k & 3) != 0)
b = multadd(b, p05[i-1], 0);