mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:50:30 +00:00
Patch to support MSVC better, contributed by Morten Ofstad
llvm-svn: 17215
This commit is contained in:
parent
1cef20bac1
commit
ec942219ad
@ -84,6 +84,9 @@ typedef signed int ssize_t;
|
||||
#if !defined(INT64_MAX)
|
||||
# define INT64_MAX 9223372036854775807LL
|
||||
#endif
|
||||
#if !defined(INT64_MIN)
|
||||
# define INT64_MIN ((-INT64_MAX)-1)
|
||||
#endif
|
||||
#if !defined(UINT64_MAX)
|
||||
# define UINT64_MAX 0xffffffffffffffffULL
|
||||
#endif
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user