1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Make firstEightPowers const.

llvm-svn: 50975
This commit is contained in:
Dan Gohman 2008-05-12 16:38:14 +00:00
parent 4f0d9d18c3
commit 4224373cc8

View File

@ -438,8 +438,8 @@ namespace {
static unsigned int
powerOf5(integerPart *dst, unsigned int power)
{
static integerPart firstEightPowers[] = { 1, 5, 25, 125, 625, 3125,
15625, 78125 };
static const integerPart firstEightPowers[] = { 1, 5, 25, 125, 625, 3125,
15625, 78125 };
static integerPart pow5s[maxPowerOfFiveParts * 2 + 5] = { 78125 * 5 };
static unsigned int partsCount[16] = { 1 };