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:
parent
4f0d9d18c3
commit
4224373cc8
@ -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 };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user