From aa8ff759701956536d43028fb9c69b74074831e0 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 12 May 2008 16:38:14 +0000 Subject: [PATCH] Make firstEightPowers const. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50975 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/APFloat.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }; -- 2.11.0