From: Dan Gohman Date: Mon, 12 May 2008 16:38:14 +0000 (+0000) Subject: Make firstEightPowers const. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7c2e4f2fc5a2fdcf4e933a03dd2e89154c946401;p=oota-llvm.git Make firstEightPowers const. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50975 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp index 7d6c4dc0bfc..187b108048a 100644 --- a/lib/Support/APFloat.cpp +++ b/lib/Support/APFloat.cpp @@ -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 };