diff options
author | Chris Lattner <sabre@nondot.org> | 2004-10-25 18:40:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-10-25 18:40:47 +0000 |
commit | 7a36ae8b0103088328e3a4992ac08b3dce312248 (patch) | |
tree | 1518371b0efd8eed222809ba9797debcd15592a0 /lib | |
parent | 219c1418153d9b85035957b0e15af75e42f65854 (diff) | |
download | external_llvm-7a36ae8b0103088328e3a4992ac08b3dce312248.zip external_llvm-7a36ae8b0103088328e3a4992ac08b3dce312248.tar.gz external_llvm-7a36ae8b0103088328e3a4992ac08b3dce312248.tar.bz2 |
Patch to support MSVC better, contributed by Morten Ofstad
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/LiveIntervalAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 6916e96..c3a15fc 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -156,7 +156,7 @@ bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) { LiveInterval &RegInt = getInterval(reg); RegInt.weight += - (mop.isUse() + mop.isDef()) * pow(10.0F, loopDepth); + (mop.isUse() + mop.isDef()) * pow(10.0F, (int)loopDepth); } } ++mii; |