mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 08:17:40 +00:00
bug 122:
- Replace ConstantPointerRef usage with GlobalValue usage git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14953 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -60,8 +60,6 @@ bool EdgeProfiler::run(Module &M) {
|
||||
new GlobalVariable(ATy, false, GlobalValue::InternalLinkage,
|
||||
Constant::getNullValue(ATy), "EdgeProfCounters", &M);
|
||||
|
||||
ConstantPointerRef *CounterCPR = ConstantPointerRef::get(Counters);
|
||||
|
||||
// Instrument all of the edges...
|
||||
unsigned i = 0;
|
||||
for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
|
||||
@@ -80,10 +78,10 @@ bool EdgeProfiler::run(Module &M) {
|
||||
// otherwise insert it in the successor block.
|
||||
if (TI->getNumSuccessors() == 0) {
|
||||
// Insert counter at the start of the block
|
||||
IncrementCounterInBlock(BB, i++, CounterCPR);
|
||||
IncrementCounterInBlock(BB, i++, Counters);
|
||||
} else {
|
||||
// Insert counter at the start of the block
|
||||
IncrementCounterInBlock(TI->getSuccessor(s), i++, CounterCPR);
|
||||
IncrementCounterInBlock(TI->getSuccessor(s), i++, Counters);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user