mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-04 09:45:00 +00:00
Fix floating-point divide by zero, in a case where the value was not going to be used anyway.
llvm-svn: 162518
This commit is contained in:
parent
3739d6ca99
commit
ed01259313
@ -286,7 +286,7 @@ void ProfileEstimatorPass::recurseBasicBlock(BasicBlock *BB) {
|
||||
}
|
||||
}
|
||||
|
||||
double fraction = floor(BBWeight/Edges.size());
|
||||
double fraction = Edges.size() ? floor(BBWeight/Edges.size()) : 0.0;
|
||||
// Finally we know what flow is still not leaving the block, distribute this
|
||||
// flow onto the empty edges.
|
||||
for (SmallVector<Edge, 8>::iterator ei = Edges.begin(), ee = Edges.end();
|
||||
|
Loading…
Reference in New Issue
Block a user