mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-24 13:06:56 +00:00
Try to unbreak Linux buildbots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185237 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
97be1d608e
commit
37cb687fcb
@ -235,8 +235,8 @@ class BlockFrequencyImpl {
|
||||
//
|
||||
// Iterations = 1 / ExitProb
|
||||
//
|
||||
uint64_t D = std::max(getBlockFreq(Head).getFrequency(), 1ull);
|
||||
uint64_t N = std::max(BackFreq.getFrequency(), 1ull);
|
||||
uint64_t D = std::max(getBlockFreq(Head).getFrequency(), UINT64_C(1));
|
||||
uint64_t N = std::max(BackFreq.getFrequency(), UINT64_C(1));
|
||||
if (N < D)
|
||||
N = D - N;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user