mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Fix for edge profiling, patch by 'Marc' for PR1857
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44965 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2e07d33f04
commit
915c656a74
@ -84,7 +84,7 @@ bool EdgeProfiler::runOnModule(Module &M) {
|
|||||||
// Okay, we are guaranteed that the edge is no longer critical. If we
|
// Okay, we are guaranteed that the edge is no longer critical. If we
|
||||||
// only have a single successor, insert the counter in this block,
|
// only have a single successor, insert the counter in this block,
|
||||||
// otherwise insert it in the successor block.
|
// otherwise insert it in the successor block.
|
||||||
if (TI->getNumSuccessors() == 0) {
|
if (TI->getNumSuccessors() == 1) {
|
||||||
// Insert counter at the start of the block
|
// Insert counter at the start of the block
|
||||||
IncrementCounterInBlock(BB, i++, Counters);
|
IncrementCounterInBlock(BB, i++, Counters);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user